我有两个相同长度的随机列表,范围为 0 到 99。
lista = [12,34,45,56,66,80,89,90]
listb = [13,30,56,59,72,77,80,85]
我需要找到重复数字的第一个实例,以及它来自哪个列表。在这个例子中,我需要在 listb 中找到数字 '56',并获取索引i = 2
谢谢。
更新:运行几次后,我得到了这个错误:
if list_a[i] == list_b[j]:
IndexError: list index out of range
就像@Asterisk 建议的那样,我的两个列表长度相等且已排序, i 和 j 在开头都设置为 0。该位是遗传交叉代码的一部分:
def crossover(r1,r2):
i=random.randint(1,len(domain)-1) # Indices not at edges of domain
if set(r1) & set(r2) == set([]): # If lists are different, splice at random
return r1[0:i]+r2[i:]
else: # Lists have duplicates
# Duplicates At Edges
if r1[0] == r2[0]: # If [0] is double, retain r1
return r1[:1]+r2[1:]
if r1[-1] == r2[-1]: # If [-1] is double, retain r2
return r1[:-1]+r2[-1:]
# Duplicates In Middle
else: # Splice at first duplicate point
i1, i2 = 0, 0
index = ()
while i1 < len(r1):
if r1[i1] == r2[i2]:
if i1 < i2:
index = (i1, r1, r2)
else:
index = (i2, r2, r1)
break
elif r1[i1] < r2[i2]:
i1 += 1
else:
i2 += 1
# Return A Splice In Relation To What List It Appeared First
# Eliminates Further Duplicates In Original Lists
return index[2][:index[0]+1]+index[1][index[0]+1:]
该函数接受 2 个列表并返回一个。domain 是 10 个元组的列表:(0,99)。
正如我所说,错误不会每次都发生,只会偶尔发生一次。
我感谢您的帮助。