gpt4 book ai didi

python - 索引时Python中的递归限制

转载 作者:太空宇宙 更新时间:2023-11-04 02:07:14 26 4
gpt4 key购买 nike

我在玩弄 recursion limit在 Python 中,可以使用 sys.setrecursionlimit(limit) 动态更改。下面的代码演示了整数 limit 恰好对应于递归函数调用允许的最大深度。

对于使用 [] 的递归索引,似乎适用相同的递归限制,但显然是因子 3,这意味着我可以索引比我深三倍可以打电话: enter image description here

上面的图是由下面的代码生成的。

import itertools, sys
import numpy as np
import matplotlib.pyplot as plt

limits = np.arange(10, 500, 100)

# Find max depth of recursive calls
maxdepth = []
for limit in limits:
sys.setrecursionlimit(limit)
try:
n = [0]
def fun(n=n):
n[0] += 1
fun()
fun()
except RecursionError:
maxdepth.append(n[0])
a, b = np.polyfit(limits, maxdepth, 1)
plt.plot(limits, maxdepth, '*')
plt.plot(limits, a*limits + b, '-', label='call')
plt.text(np.mean(limits), a*np.mean(limits) + b, f'slope = {a:.2f}')

# Find max depth of getitem
maxdepth = []
n = 0
l = []; l.append(l)
for limit in limits:
sys.setrecursionlimit(limit)
for n in itertools.count(n):
try:
eval('l' + '[-1]'*n)
except RecursionError:
break
maxdepth.append(n)
a, b = np.polyfit(limits, maxdepth, 1)
plt.plot(limits, maxdepth, '*')
plt.plot(limits, a*limits + b, '-', label='getitem')
plt.text(np.mean(limits), a*np.mean(limits) + b, f'slope = {a:.2f}')

plt.xlabel('Recursion limit')
plt.ylabel('Max depth')
plt.legend()
plt.savefig('test.png')

为了测试递归索引,我将一个列表 l 附加到自身并构造一个长文本 [-1][-1][-1]... 这然后,我对 l 进行动态评估。

问题:解释 3 的这个因数。

最佳答案

l[-1][-1]...没有递归——它编译为“push l;用最后一个元素替换栈顶;代替…”。您的 RecursionError 来自编译 长字符串。

字面上有一个 factor of 3用于近似字节编译器的堆栈使用情况 解释器本身。 (Python 2 没有此类限制,只会在此类表达式上崩溃。)

关于python - 索引时Python中的递归限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54411826/

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