gpt4 book ai didi

python递归函数报错RuntimeError : maximum recursion depth exceeded

转载 作者:行者123 更新时间:2023-11-28 21:59:27 26 4
gpt4 key购买 nike

我有这个脚本:

def number_of_occurences(c, message):
position = message.find(c)
if position == -1:
return 0
else:
if len(message[position:]) == 0:
return position
else:
return position + number_of_occurences(c, message[position:])

number_of_occurences('a', 'azertya')

但是当我运行它时我得到这个错误:

Traceback (most recent call last):
File "frequency_analysis.py", line 31, in <module>
number_of_occurences('a', 'azertya')
File "file_name.py", line 29, in number_of_occurences
return position + number_of_occurences(c, message[position:])
...
...
...
File "file_name.py", line 29, in number_of_occurences
return position + number_of_occurences(c, message[position:])
RuntimeError: maximum recursion depth exceeded

我知道这个similar question但它没有帮助,它花了更长的时间但为此给出了同样的错误:

sys.setrecursionlimit(10000)

还有这个:

sys.setrecursionlimit(30000)

但是对于这个:

sys.setrecursionlimit(50000)

它给出了这个错误:

Segmentation fault (core dumped)

我在这里做错了什么?提前致谢。

更新:

感谢@abarnet这是正确的代码:

def number_of_occurences(c, message):
position = message.find(c)
nbr = 0.0
if position == -1:
return 0
else:
nbr += 1
if len(message[position:]) == 0:
return nbr
else:
return nbr + number_of_occurences(c, message[position + 1:])

最佳答案

问题是你用相同的参数递归调用自己,这保证了无限递归。将递归限制设置多高并不重要;你不能将它设置为超过无穷大。*


使用您的参数手动跟踪它。

position = message.find(c) # = 'azertya'.find('a') = 0
if position == -1: # Nope
else:
if len(message[position:]) == 0: # len('azertya'[0:]) == len('azertya') == 7 != 0
else:
return position + number_of_occurences(c, message[position:])
# 0 + number_of_occurences('a', 'azertya'[0:])
# == 0 + number_of_occurences('a', 'azertya')
# which is exactly what we were called with

即使您不从第一个字符开始,如果您从字符串中的任何 字符开始,您最终也会到达那一点,并遇到同样的问题。再次尝试使用 'r' 进行追踪而不是 'a' .

通过像 this one 这样的交互式可视化工具运行比手动跟踪简单得多(而且更漂亮,更难搞砸)。

或者,尝试 printc , message , 和 position每次通过,应该很明显发生了什么。

修复非常简单:

return position + number_of_occurences(c, message[position+1:])

* 即使可以,一旦堆栈与堆发生冲突,您也会遇到段错误,至少在 CPython 中是这样。这就是为什么只有 50000 时会出现段错误。但即使使用不同的实现,如 Stackless 或 PyPy,一旦没有更多堆栈帧的空间,你也会收到内存错误。但是,如果您有无限的寻址位和无限的虚拟页表空间,那么这不是问题,并且愿意永远等待……它仍然行不通,但至少它永远不会失败.

关于python递归函数报错RuntimeError : maximum recursion depth exceeded,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16577006/

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