python快速排序

# 快速排序 def QS(a, start, end): if end == start: return i, j = start, end key = a[i] while i != j: while a[j] >= key: j -= 1 if i == j:
相關文章
相關標籤/搜索