Python:快速排序法python實現

def QuickSort(myList,start,end): if start < end: i,j = start, end base = myList[i] while i < j: while (i<j) and (myList[j] >= base): j = j -1
相關文章
相關標籤/搜索