摘要: 1、冒泡排序 a=[2,3,4,5,10,9,5,1,6,7] x=len(a) for i in range(x): flag=False for j in range(i+1,x): if a[i]>a[j]: temp=a[i] a[i]=a[j] a[j]=temp flag=True if 阅读全文
posted @ 2019-12-14 21:52 二十四长夜明 阅读(98) 评论(0) 推荐(0) 编辑