gpt4 book ai didi

python - 我发现书中有错误 "Grokking Algorithms"

转载 作者:太空宇宙 更新时间:2023-11-03 23:54:46 25 4
gpt4 key购买 nike

我是编程初学者。我正在阅读 Aditya Y Bhargava 的《Grokking 算法》一书。”在第一个代码中,我发现了一个错误。这本书描述了二进制算法。它说该算法必须取数组的平均值,然后取该平均值的平均值,但是我调试了代码,它只需要一个非常大的数组然后将它减1。也许这是版本之间的差异,因为我使用的是Python 3.7,但在书中它是Python 2.7

def binary_search(list, item):
low = 0
high = len(list)-1

while low <= high:
mid = int(low + high)
guess = list[mid]
if guess == item:
return mid
if guess > item:
high = mid - 1
else:
low = mid + 1

return None

my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

print(binary_search(my_list, 1))

最佳答案

The errata for the book将此列为错误。应该是:

mid = (low + high) // 2

所以:很好!

剧透警告:还有更多错误!

关于python - 我发现书中有错误 "Grokking Algorithms",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58272894/

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