Python 回溯
Python 回溯
回溯是遞歸的一種形式。但它涉及選擇任何可能性的唯一選擇。我們首先選擇一個選項并從中退出,如果我們達到了一個狀態(tài),那么我們可以得出結(jié)論:這個特定的選項不能提供所需的解決方案。我們通過遍歷每個可用選項來重復(fù)這些步驟,直到獲得所需的解決方案。
以下是查找給定字母集合的所有可能排列順序的示例。當我們選擇一對時,我們應(yīng)用回溯來驗證是否已經(jīng)創(chuàng)建了該確切的一對。如果尚未創(chuàng)建,則將該對添加到答案列表中,否則將被忽略。
def permute(list, s): if list == 1: return s else: return [ y + x for y in permute(1, s) for x in permute(list - 1, s) ] print(permute(1, ["a","b","c"])) print(permute(2, ["a","b","c"]))
當上面的代碼被執(zhí)行時,它會產(chǎn)生以下結(jié)果 -
['a', 'b', 'c'] ['aa', 'ab', 'ac', 'ba', 'bb', 'bc', 'ca', 'cb', 'cc']
相關(guān)文章
- Python 網(wǎng)絡(luò)編程
- Python 算法設(shè)計
- Python randrange() 函數(shù)
- Python uniform() 函數(shù)
- Python os.chdir() 方法
- Python os.close() 方法
- Python os.pathconf() 方法
- Python os.stat_float_times() 方法
- Python os.walk() 方法
- Python os.write() 方法
- Python expandtabs()方法
- Python title()方法
- Python List count()方法
- Python List reverse()方法
- Python 字典 Dictionary setdefault()方法
- Python 字典 Dictionary pop() 方法
- Python Tuple 元組 len()方法
- Python Tuple 元組 min()方法
- Python time gmtime()方法
- Python time strptime()方法