Python 排列回溯 - 为什么我必须在此回溯示例中调用 list?

发布于 2025-01-09 20:04:40 字数 704 浏览 1 评论 0原文

在下面的代码中,为什么我需要在基本情况下调用 list() ?如果我不调用 current_perm 上的列表,它只会返回一个空列表的列表。


        permutations = []

# returns a list of its permutation
        def permutation(nums, current_perm = []):
            if len(nums) == 0:
                # must call list on current_perm
                # not sure why
                permutations.append(list(current_perm))
            else:
                for idx, num in enumerate(nums):
                    current_perm.append(num)
                    # pass nums as nums without the current number
                    permutation(nums[:idx]+nums[idx+1:], current_perm)
                    # backtrack
                    current_perm.pop()

In the code blow why do I need to call list() in the base case? If I don't call the list on current_perm, it just returns a list of empty lists.


        permutations = []

# returns a list of its permutation
        def permutation(nums, current_perm = []):
            if len(nums) == 0:
                # must call list on current_perm
                # not sure why
                permutations.append(list(current_perm))
            else:
                for idx, num in enumerate(nums):
                    current_perm.append(num)
                    # pass nums as nums without the current number
                    permutation(nums[:idx]+nums[idx+1:], current_perm)
                    # backtrack
                    current_perm.pop()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文