摘要:
def allsort(): #全排列 temp=[] dfs(0,temp) def dfs(position,temp): if position==len(test): #每次添加够元素后(等于原集合长度)输出 print("输出排列:",temp) for i in test: #遍历tes 阅读全文
摘要:
#求最长字符串的问题 def max_sublength(str): """给定一个字符串str,返回其最长字符串长度""" str_length=len(str) if str_length==0: return 0 if str_length==1: return 1 t=[1 for i in 阅读全文