gpt4 book ai didi

python - 查找一个列表的任何元素在另一个列表中出现的索引

转载 作者:太空狗 更新时间:2023-10-29 19:36:39 26 4
gpt4 key购买 nike

获取列表 haystackneedles

haystack = ['a', 'b', 'c', 'V', 'd', 'e', 'X', 'f', 'V', 'g', 'h']
needles = ['V', 'W', 'X', 'Y', 'Z']

我需要生成一个索引列表,其中 needles 的任何元素出现在 haystack 中。在这种情况下,这些索引是 3、6 和 8,因此

result = [3, 6, 8]

This question I found非常相似,用

优雅地解决了
result = [haystack.index(i) for i in needles]

不幸的是,在我的例子中,这个解决方案给出了 ValueError: 'W' is not in list。这是因为这里的区别在于 needles 的元素可能在 haystack 中出现多次或根本不出现。

换句话说,haystack 可能不包含针,也可能包含很多。

最佳答案

haystack = ['a', 'b', 'c', 'V', 'd', 'e', 'X', 'f', 'V', 'g', 'h']
needles = ['V', 'W', 'X', 'Y', 'Z']
st = set(needles)
print([i for i, e in enumerate(haystack) if e in st])
[3, 6, 8]

即使您使用了[haystack.index(i) for i in needles if i in haystack],它也不会工作,因为您有重复的元素。

制作 st = set(needles) 意味着我们有一个线性解决方案,因为集合查找是 0(1),这对于大输入来说效率会显着提高。

关于python - 查找一个列表的任何元素在另一个列表中出现的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29452735/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com