摘要: 1 def partition(start,end,array): 2 pivot=array[start] 3 left,right=start+1,end 4 5 while True: 6 7 while left<=right and array[left]<=pivot: 8 left+= 阅读全文
posted @ 2021-03-15 09:23 ChevisZhang 阅读(50) 评论(0) 推荐(0) 编辑