How safe is recursion in Python?(Python中的递归有多安全?)
问题描述
我正在做一项 AI 作业,尽管我的教授提出了建议,但我无意用 lisp 写这个作业.但是,我确实想递归地编写它,以使其简洁明了.这是我的问题:
I'm working on an AI homework, and despite my professor's suggestions, I have no intention of writing this assignment in lisp. However, I do want to write it recursively, the better to keep it concise and simple. Here is my question:
如果我在大型状态空间上执行搜索,我是否会面临堆栈空间不足的重大风险?Python 堆栈有多深?
Am I running a major risk of running out of stack space if I perform a search over a large state space? How deep does the Python stack go?
推荐答案
Python 堆栈有多深?
How deep does the Python stack go?
python 中默认的递归限制是 1000 帧.您可以使用 sys.setrecursionlimit(n)
来更改它,风险自负.
The default recursion limit in python is 1000 frames. You can use sys.setrecursionlimit(n)
to change that at your own risk.
如果您打算使用 python,我建议您使用更适合该语言的模式.如果您想使用递归样式搜索,并且需要任意堆栈深度,您可以利用 python 的增强生成器(协程)创建蹦床模式"(在 PEP342)
If you're set on using python, I would suggest using a pattern more suited to the language. If you want to use the recursive style search, and need arbitrary stack depth, you can make use of python's enhanced generators (coroutines) to create a "trampoline pattern" (there an example in PEP342)
尽管我的教授提出了建议,但我无意用 lisp 写这个作业
and despite my professor's suggestions, I have no intention of writing this assignment in lisp
如果该练习旨在基于递归,那么尾调用优化的语言(如 lisp)可能是您的最佳选择.
If the exercise is intended to be recursion-based, a tail-call optimized language, like a lisp, is probably your best bet.
这篇关于Python中的递归有多安全?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python中的递归有多安全?
基础教程推荐
- 筛选NumPy数组 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01