hello-algo/codes/python/chapter_backtracking/permutations_i.py
Yudong Jin c6eecfd0dc
feat: Add the section of permutations problem. (#476)
* Add the section of permutations problem.

* Update permutations_problem.md
2023-04-24 03:33:30 +08:00

43 lines
1.1 KiB
Python

"""
File: permutations_i.py
Created Time: 2023-04-15
Author: Krahets (krahets@163.com)
"""
import sys, os.path as osp
sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__))))
from modules import *
def backtrack(
state: list[int], choices: list[int], selected: list[bool], res: list[list[int]]
):
"""回溯算法:全排列 I"""
# 当状态长度等于元素数量时,记录解
if len(state) == len(choices):
res.append(list(state))
return
# 遍历所有选择
for i, choice in enumerate(choices):
# 剪枝:不允许重复选择元素
if not selected[i]:
# 尝试
selected[i] = True # 做出选择
state.append(choice) # 更新状态
backtrack(state, choices, selected, res)
# 回退
selected[i] = False # 撤销选择
state.pop() # 恢复到之前的状态
"""Driver Code"""
if __name__ == "__main__":
nums = [1, 2, 3]
res = []
# 回溯算法
backtrack(state=[], choices=nums, selected=[False] * len(nums), res=res)
print(f"输入数组 nums = {nums}")
print(f"所有排列 res = {res}")