algorithm-in-python/math/permute/permute_divide_and_conquer.py
2020-01-01 15:51:32 +08:00

28 lines
686 B
Python

''' mbinary
#########################################################################
# File : permute_divide_and_conquer.py
# Author: mbinary
# Mail: zhuheqin1@gmail.com
# Blog: https://mbinary.xyz
# Github: https://github.com/mbinary
# Created Time: 2018-11-25 12:23
# Description:
#########################################################################
'''
def permute(lst, n):
''' O(n!), optimal'''
if n == 1:
print(lst)
else:
for i in range(n):
lst[i], lst[n-1] = lst[n-1], lst[i]
permute(lst, n-1)
lst[i], lst[n-1] = lst[n-1], lst[i]
if __name__ == '__main__':
n = 3
permute([i for i in range(n)], n)