我在解释器中运行了下面的代码并调用了联合函数
quick_find(10).union(3,4)
输出:[0, 1, 2, 4, 4, 5, 6, 7, 8, 9]
quick_find(10).union(0,4)
输出:[4, 1, 2, 3, 4, 5, 6, 7, 8, 9]
当我第二次调用联合函数时,输出列表应该是 this
[4, 1, 2, 4, 4, 5, 6, 7, 8, 9]
。
但相反,它给了我[4, 1, 2, 3, 4, 5, 6, 7, 8, 9]
作为输出。我怎样才能得到我想要的输出。请建议
class quick_find:
def __init__(self,n):
self.id = [number for number in xrange(n)]
def union(self,x,y):
j = 0
elements = self.id
for i in elements:
if i == elements[x]:
elements[j] = elements[y]
j = j+1
self.id = elements
return elements