18

对于两个列表 a 和 b,如何获取两者中出现的值的索引?例如,

a = [1, 2, 3, 4, 5]
b = [9, 7, 6, 5, 1, 0]

return_indices_of_a(a, b)

将返回[0,4], 与(a[0],a[4]) = (1,5).

4

3 回答 3

27

最好的方法是创建b一个set,因为您只检查其中的成员身份。

>>> a = [1, 2, 3, 4, 5]
>>> b = set([9, 7, 6, 5, 1, 0])
>>> [i for i, item in enumerate(a) if item in b]
[0, 4]
于 2012-04-28T19:55:19.727 回答
6
def return_indices_of_a(a, b):
  b_set = set(b)
  return [i for i, v in enumerate(a) if v in b_set]
于 2012-04-28T19:57:09.893 回答
3

对于较大的列表,这可能会有所帮助:

for item in a:
index.append(bisect.bisect(b,item))
    idx = np.unique(index).tolist()

一定要导入 numpy.

于 2015-05-29T12:03:04.480 回答