2019年1月3日
摘要: 插入排序: def insert_sort(lst): for i in range(1,len(lst)): x=lst[i] #x是一个临时变量,表示当前轮到的数字 j=i #临时变量 j ,为后续的排序提供方便 while j>0 and lst[j-1]>x: #当j 小于0,说明已经数字比 阅读全文
posted @ 2019-01-03 21:47 chaina_家长 阅读(216) 评论(0) 推荐(0) 编辑