如何在 python 2.7.3 中运行以下程序
import sys
sys.setrecursionlimit(2 ** 20)
def f(x):
if (x==0): return 0
else: return f(x-1)+1
print f(200000)
此代码在 Ubuntu 中收到分段错误。
如何在 python 2.7.3 中运行以下程序
import sys
sys.setrecursionlimit(2 ** 20)
def f(x):
if (x==0): return 0
else: return f(x-1)+1
print f(200000)
此代码在 Ubuntu 中收到分段错误。