我有这个代码:
Array = [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
for c in range(1, len(Array)):
if(Array[c]==-1):
continue
temp = Array[c]
i = c
d = c-1
while(d>=0):
if(Array[d]==-1):
d-=1
continue
if(temp>=Array[d]):
break
Array[i] = Array[d]
i = d
d-=1
Array[i] = temp
当我按照编写的方式运行代码时,最终的数组是:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
但是,当我将最后一行更改为“Array[i] = Array[c]”而不是“Array[i] = temp”时,最终的 Array 为:
[9, 9, 9, 9, 9, 9, 9, 9, 9, 9]
这对我来说没有意义。如果“temp”是 Array[c],为什么更改该行会产生这种差异?