gpt4 book ai didi

python - 插入排序不变断言失败

转载 作者:行者123 更新时间:2023-11-30 23:40:55 24 4
gpt4 key购买 nike

在 for 循环末尾的以下代码中,我使用断言函数来测试 a[i+1] 是否大于或等于 a[i] 但出现以下错误(在代码之后)以下)。同样在 C++ 中,带有以下内容的断言似乎工作得很好,但在 python(以下代码)中它似乎不起作用...有人知道为什么吗?

import random

class Sorting:
#Precondition: An array a with values.
#Postcondition: Array a[1...n] is sorted.
def insertion_sort(self,a):
#First loop invariant: Array a[1...i] is sorted.
for j in range(1,len(a)):
key = a[j]
i = j-1
#Second loop invariant: a[i] is the greatest value from a[i...j-1]
while i >= 0 and a[i] > key:
a[i+1] = a[i]
i = i-1
a[i+1] = key
assert a[i+1] >= a[i]
return a

def random_array(self,size):
b = []
for i in range(0,size):
b.append(random.randint(0,1000))
return b


sort = Sorting()
print sort.insertion_sort(sort.random_array(10))

错误:

Traceback (most recent call last):
File "C:\Users\Albaraa\Desktop\CS253\Programming 1\Insertion_Sort.py", line 27, in <module>
print sort.insertion_sort(sort.random_array(10))
File "C:\Users\Albaraa\Desktop\CS253\Programming 1\Insertion_Sort.py", line 16, in insertion_sort
assert a[i+1] >= a[i]
AssertionError

最佳答案

你的代码没问题。当i==-1时断言失败。在 Python 中,a[-1] 是列表的最后一个元素,因此在本例中,您要检查第一个元素 (a[-1+1] ) 大于或等于最后一个元素 (a[-1])。

关于python - 插入排序不变断言失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12359394/

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