有没有办法在Python中创建一个无限深度的递归方法?

时间:2013-04-20 20:41:02

标签: python recursion infinite depth

例如,在像

这样的图形上编写一些算法时
def f(graph):
    #graph is dictionary of pairs vertex_i:{set of edges (i,j)} for 1<=i,j<=n
    def g(vertex):
        for vertex1 in graph:
            do sth
            ...
            for (i,j) in graph[vertex1]:
                ...
                g(j)#recursive call
        ...
        return ...

    return g(1)

有限的递归深度有时非常烦人,因为如果必须避免递归,代码会变得更长,更复杂。 有没有办法达到无限深度? 也许您可以通过以下方法描述问题的一般解决方案

def nthNumber(n):
    if n==1: return 1
    else: return nthNumber(n-1)+1

(我知道这很简单,请不要回答“你应该只写nthNumber(n):返回n” - 我对一般解决方案感兴趣)。谢谢你的帮助!

1 个答案:

答案 0 :(得分:6)

无限递归需要无限的资源;每个函数调用都需要一个堆栈条目,并且只有有限的内存来保存它们。所以, no ,你不能拥有无限的递归深度。

可以 提高限制,方法是致电sys.setrecursionlimit()