鱼C论坛

 找回密码
 立即注册
查看: 241|回复: 1

回溯算法尝试

[复制链接]
发表于 2020-4-11 21:50:15 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
在leetcode上面看到跳楼梯的问题,自已想尝试用回溯算法将所有可能的情况全部呈现出来,代码如下(死循环):
def test():
    
    ans = []
    index = 0

    def go(index, step):
        index += step
        return index
    
    def back(index, step):
        index -= step
        return index
    
    def add_solution(res):
        ans.append(res)
        return ans
    
    def main(list_ = [2,3,1,4], res = []):
        print(index)
        for step in range(1, list_[index] + 1):
            if index < len(list_) - 1:
                res.append(step)
                go(index, step)
                print(index, res)
                test(list_, res)
            elif index == len(list_) - 1:
                add_solution(res)
                back(index, step)
                print(index)
                break
            elif index > len(list_) - 1:
                break
        res = res[:-1]
        print(res, ans)
            
    main()
其中list_的index为楼梯的层数,list_[index]为当前楼梯可行进的最大步数,希望输出ans为所有爬楼的可能走法;
在main中会出现死循环,原因是go和back函数并没有想我想象中的修改index的值,希望大佬能教教我这里是什么原理;
如果能教教我回溯算法就更好了啊哈哈哈
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-11 22:07:02 | 显示全部楼层
try this:
def test():
    
    ans = []
    index = 0

    def go(index, step):
        nonlocal index
        index += step
    
    def back(index, step):
        nonlocal index
        index -= step
    
    def add_solution(res):
        ans.append(res)
        return ans
    
    def main(list_ = [2,3,1,4], res = []):
        print(index)
        for step in range(1, list_[index] + 1):
            if index < len(list_) - 1:
                res.append(step)
                go(step)
                print(index, res)
                test(list_, res)
            elif index == len(list_) - 1:
                add_solution(res)
                back(step)
                print(index)
                break
            elif index > len(list_) - 1:
                break
        res = res[:-1]
        print(res, ans)
            
    main()
这个是变量作用域和不可变对象的问题。

PS:建议楼主先打好基础,再去力扣做题哦
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 08:40

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表