- 论坛徽章:
- 0
|
基于全排列的算法:
#coding=cp936
'''问题:
所谓整数接力是指将n个正整数前后拼接成一个数。不同的接力方式将得到不同的结果。例如n=3时,3个正整数的接力结果有:123,132,213,231,312,321。
任务:
对于给定的n个正整数,找出一种最佳的接力方式,使得接力结果最大。
'''
lst = [93,13,21,50,109]
def perm(lst, lst2):
'''a generator function that demonstrate full permutation algorithm'''
if len(lst) == len(lst2):
yield lst2
else:
for i in lst:
if i in lst2:continue
lst2.append(i)
for j in perm(lst, lst2):
yield j
lst2.pop()
max = 0
for i in perm(lst, []):
tmp = int(''.join([str(i) for i in lst]))
if tmp > max:
max = tmp
print max
|
|
|