我想排序使用快速排序鏈接列表的引用數組,這裏是quicksort的代碼。這不起作用,所以有人可以幫我解決這個錯誤。排序參考數組
public static int partition(linkedList arr[], int left, int right){
int i = left, j = right;
linkedList tmp;
linkedList pivot = arr[(left + right)/2];
while (i <= j){
while (arr[i] < (pivot)) //getting error bad operand types
i++;
while (arr[j] > (pivot)) //getting error bad operand types
j--;
if (i <= j){
tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
i++;
j--;
}
};
return i;
}
public static void quickSort(linkedList arr[], int left, int right){
int index = partition(arr, left, right);
if (left < index-1)
quickSort(arr, left, index-1);
if (index < right)
quickSort(arr, index, right);
}
是什麼錯誤說? – Joe 2012-02-17 14:07:00
是{「apple」,「orange」}小於還是大於{「plane」,「car」}?沒人知道。您無法將參考文獻與'<' and '>'進行比較。 – 2012-02-17 14:08:23