python最大递归次数_Python中递归的最大次数

实际应用中遇到了一个python递归调用的问题,报错如下:

RuntimeError: maximum recursion depth exceeded while calling a Python object

网上找了一下,原来Python确实有递归次数限制,默认最大次数为1000

在正常的python里:

In [1]: sys.setrecursionlimit?

Type:builtin_function_or_method

Base Class:

String Form:

Namespace:Interactive

Docstring:

setrecursionlimit(n)

Set the maximum depth of the Python interpreter stack to

n.  This limit prevents infinite recursion from causing an

overflow of the C stack and crashing Python.  The highest

possible limit is platform-dependent.

那么如何进行判断处理呢?下面给出两段代码,供参考。

代码如下:

def recursion(n):

if(n <= 0):

return

print n

recursion(n - 1)

if __name__ == "__main__":

recursion(1000)

当在我自己的机器运行以上代码时,发现最多能打印到998,然后就会抛出 “RuntimeError: maximum recursion depth exceeded” 的错误了。 嘿,还真有限制。但转念一想,python不会这么弱吧。经过一番查找,发现这是python专门设置的一种机制用来防止无限递归造成Python溢出崩溃, 最大递归次数是可以重新调整的。 (http://docs.python.org/2/library/sys.html#sys.setrecursionlimit),修改代码如下:

import sys

sys.setrecursionlimit(1500) # set the maximum depth as 1500

def recursion(n):

if(n <= 0):

return

print n

recursion(n - 1)

if __name__ == "__main__":

recursion(1200)

再次运行,顺利通过!!!

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值