摘要: def quick(list,start,end): if start>=end: return low = start high = end key = list[low] while start<end: while start<end and list[end]>key: end-=1 lis 阅读全文
posted @ 2020-04-14 23:15 taomin 阅读(163) 评论(0) 推荐(0) 编辑
摘要: pass 阅读全文
posted @ 2020-04-14 20:24 taomin 阅读(91) 评论(0) 推荐(0) 编辑