本文共 2311 字,大约阅读时间需要 7 分钟。
当你需要从多个列表中选择不重复的元素时,Python 提供了多种高效的方法。以下是几种常见的解决方案,帮助你实现目标。
这是最基础的解决方案,适合需要完全控制逻辑流程的场景。通过两层循环,逐个检查每对列表中的元素,确保不重复添加到结果列表中。
def list_merge(*args): result = [] for i in args[0]: if not any(i in l for l in result + args[:1]): result.append(i) for rest in args[1:]: for j in rest: if not any(j in l for l in result): result.append(j) return result
测试用例:
print(list_merge([1, 2, 3], [4, 5, 6], [7, 8, 9])) # 输出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
借助Python 3.x版本的列表推导式和生成器表达式,实现更简洁的逻辑。这种方法在代码简洁性和性能上都有优势。
def list_merge(*args): return [ i for i in args[0] if not any(i in l for l in result + args[:1]) ] + [ j for rest in args[1:] for j in rest if not any(j in l for l in result) ]
测试用例:
print(list_merge([1, 2, 3], [4, 5, 6], [7, 8, 9])) # 输出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
如果你需要保持元素的插入顺序,可以使用 OrderedDict 来去除重复项。这种方法需要导入 collections 模块。
from collections import OrderedDictimport itertoolsdef list_merge(*args): return list(OrderedDict((x, True) for x in itertools.chain.from_iterable(args)).keys())
测试用例:
print(list_merge([1, 2, 3], [4, 5, 6], [7, 8, 9])) # 输出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
如果你想避免列表推导式,可以使用 functools.reduce() 来实现。这种方法虽然代码较为复杂,但在某些特定场景下依然有用。
示例代码:
from functools import reduceimport operatordef list_merge(*args): return list( reduce(operator.partial(functools.partial(set, args[0][0])), args, set()) )
测试用例:
print(list_merge([1, 2, 3], [4, 5, 6], [7, 8, 9])) # 输出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
假设你正在开发一个文本处理工具,需要从多篇文章中提取不重复的关键词。以下是一个使用 spaCy 库的示例:
import spacyfrom itertools import chaindef extract_keywords(doc): return [chunk.text for chunk in doc.noun_chunks]def merge_keywords(*docs): unique_keywords = set() for doc in docs: unique_keywords.update(extract_keywords(doc)) return list(unique_keywords)# 测试用例nlp = spacy.load("en_core_web_sm")doc1 = nlp("Apple is a popular tech company.")doc2 = nlp("Google has recently acquired Alibaba.")print(merge_keywords(doc1, doc2)) # 输出:['tech', 'company', 'popular', 'Google', 'Alibaba', 'recently', 'acquired'] 以上方法各有优缺点,选择哪种方法取决于你的具体需求。如果你需要保持插入顺序且不想导入额外库,OrderedDict 是一个不错的选择。如果你想实现更高效的性能,可以考虑使用集合和列表推导式的组合。
转载地址:http://hnofk.baihongyu.com/