Algorithm: Base case and Recursive case

Because a recursive function calls itself, it's easy to write a function incorrectly that ends up in an infinite loop.

For example, suppose you want to write a function that prints a countdown, like this: 3...2...1.
Write out that code and run it. You'll notice a problem: this function will fun forever: 3...2...1...0...-1...-2...

When you write a recursive function, you have to tell it when to stop recursing. That's why every recusive function has two parts: the base case, and the recursive case. The recursive case is when the function calls itself. The base case is when the function doesn't call itself again ... so it doesn't go into an infinite loop.

Let's add a base case to the countdown function:

def count_down(i):
    print(i)
    if i <= 0:
        return
    else:
        count_down(i-1)

Now the function works as expected from i to 0.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容