gpt4 book ai didi

python - 快速排序代码 (Python)

转载 作者:行者123 更新时间:2023-11-28 22:45:35 24 4
gpt4 key购买 nike

这是我在 StackExchange 上的第一篇文章,我试图找出我的简单 QuickSort 程序代码有什么问题。我相当确定一些整数只需要调整 +-1 或其他东西,所以我想保留格式。

代码如下:

def QuickSort(Array_1,lower=0,upper=-1):
print(Array_1)
if upper==-1:
upper=len(Array_1)-1
if lower<upper:
Array_2,pivot=partition(Array_1,lower,upper)
Array_3=QuickSort(Array_2,lower,pivot-1)
Array_4=QuickSort(Array_3,pivot+1,upper)
return Array_4
else:
return Array_1

def partition(Array,lower,upper):
key=Array[upper]
print(Array)
i=lower
j=lower-1
z=0
for j in range(lower,upper-1):
print(i)
print(j)
if Array[j]<key:
Array[i],Array[j]=Array[j],Array[i]
i+=1
Array[upper],Array[i]=Array[i],Array[upper]
print(Array)
return (Array,i+1)

此外,我注意到的一件事是,如果我将“j in range(p,r-1)”更改为“j in range(p,r)”,代码会无限运行,但它看起来不像它应该。想法?

变量已被编辑为有意义的变量。我认为它们都已正确更改。

 input: [8, 18, 6, 19]
desired output: [6,8,18,19]
output: [19, 8, 18, 6]

input: [16, 0, 20, 10, 5, 2]
desired output: [0,2,5,10,16,20]
output: [2, 0, 20, 16, 10, 5]

最佳答案

正如您已经猜到的那样,您的 partition 函数中只有一些小错误:

1) 您的 for 循环没有处理最后一个元素,因为您使用了 range(lower, upper-1) 而不是 range(lower, upper)

2) 你最终应该返回 i 而不是 i+1

def partition(Array,lower,upper):
...
for j in range(lower,upper):
...
return (Array,i)

结果:

>>> print QuickSort([8, 18, 6, 19])
[6, 8, 18, 19]

>>> print QuickSort([16, 0, 20, 10, 5, 2])
[0, 2, 5, 10, 16, 20]

关于python - 快速排序代码 (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28442837/

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