單鏈表的快排

單鏈表的快排和普通快排都是快排 1.移動數(partition),使得左邊的都小於key, 右邊的都大於key 2.反覆 下面是正常數組的快排: def arr_sort(self, vector,start, end):         #start, end = 0, len(vector)-1         i,j = start ,end         if i>=j:       
相關文章
相關標籤/搜索