递归

作者: Xiasiyu | 来源:发表于2016-10-25 20:21 被阅读0次

    如果你听说过递归,你会发现用中文或者英文或者数学语言来描述它非常麻烦,下面是一段Python代码:

    global expectancy 
    
    def Life():
        Awake()
        Eat()
        try:
            Work()
        except TuoYanZheng:
            Play()
        Others(option)
        Shit()
        Sleep()
        expectancy-= 1
        if expectancy <= 0:
            return "death"
        else:
            return Life()
    

    我相信任何一个高中文化水平的人都能看懂这段代码。
    递归是阿里面试的必考题。

    相关文章

      网友评论

          本文标题:递归

          本文链接:https://www.haomeiwen.com/subject/rpzruttx.html