我已經被分配用一個隨機支點快速排序(因爲它被認爲是最有效率/最安全的方式),但我一直在追隨一個bogosort。任何人都可以指導我如何做到這一點?有人可以幫我看看我的寶貝,看看我能否挽救它嗎?用Java中的隨機數據快速排序
public static void Quick(int[] target, int lo, int hi) {
if(hi-lo==0){return;}
Random numberGenerator = new Random();
int pivot = (numberGenerator.nextInt(hi-lo)+lo);
int high;
for(high=hi; high>pivot ; high--){
if(target[high]<target[pivot]){ //if highest was smaller than pivot, move far end
if(high-pivot==1){
int temp=target[high];
target[high]=target[pivot];
target[pivot]=temp;
}
else{
int temp1 = target[pivot];
int temp2 = target[pivot+1];
target[pivot]=target[high];
target[pivot+1]=temp1;
target[high]=temp2;
}
}
}
int low;
for(low=lo; low<pivot ; low++){
if(target[low]>target[pivot]){ //if highest was smaller than pivot, move far end
if(pivot-low==1){
int temp=target[low];
target[low]=target[pivot];
target[pivot]=temp;
}
else{
int temp1 = target[pivot];
int temp2 = target[pivot-1];
target[pivot]=target[low];
target[pivot-1]=temp1;
target[low]=temp2;
}
}
}
if(low-lo>0){
Quick(target, lo, low-1);
}
if(hi-high>0){
Quick(target, high+1, hi);
}
}
**這是自學** – danutenshu 2010-07-28 22:22:51
你的'Random'實例不應該是一個局部變量。 – 2010-07-28 22:50:29
@Brian S,即使它不能解決我的問題 – danutenshu 2010-07-28 22:55:29