会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
chaina_家长
博客园
首页
新随笔
联系
订阅
管理
2019年1月3日
python 插入排序,选择排序
摘要: 插入排序: 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)
编辑