我正在尝试通过将最后一个Element作为枢轴来实现quickSort。 但是我无法生成有效的输出。
为了使其随机化,还需要做哪些改变? 我是用Java编写的。
public class QuickSortDemo {
public static void quicksort(int A[], int temp[], int left, int right) {
int q, i;
//why u need to check this base case always
if (left < right) {
q = partition(A, temp, left, right);
quicksort(A, temp, left, q - 1);
quicksort(A, temp, q + 1, right);
for (i = 0; i < A.length; i++) {
System.out.println(A[i]);
}
}
}
public static int partition(int A[], int temp[], int left, int right) {
int x, i, j;
x = A[right];
i = left - 1;
for (j = left; j <= right - 1; j++) {
if (A[j] <= x) {
i = i + 1;
A[i] = A[j];
}
}
A[i + 1] = A[right];
return i + 1;
}
public static void main(String s[]) {
int ar[] = {6, 3, 2, 5, 4};
int p[] = new int[ar.length];
quicksort(ar, p, 0, ar.length - 1);
}
} //end class QuickSortDemo
OutputShown
2
2
4
5
4
2
2
4
4
4
2
2
4
4
4
答案 0 :(得分:2)
如评论中所述,分区方法中存在一些错误。 在实现快速排序时,您希望交换数组中的元素,而不是仅覆盖前面的元素。他们会迷路。
此外,代码从左侧开始,并始终交换每个小于或等于pivot的元素。如果元素已经在数组的正确部分,则这些是不必要的操作。
最好从左侧搜索大于枢轴的元素。然后,从右侧搜索小于数据透视表的元素,只交换那些然后继续直到所有必要元素都被交换。
标准实现(我知道)看起来像这样
public static int partition(int A[], int left, int right) {
int pivot, i, j;
pivot = A[right];
i = left;
j = right - 1;
do {
// Search for element greater than pivot from left, remember position
while ( A[i] <= pivot && i < right ) i++;
// Search for element less than pivot from right, remember positon
while ( A[j] >= pivot && j > left ) j--;
// If elements are in the wrong part of the array => swap
if ( i < j ) swap( A, i, j );
// Continue until the whole (sub)array has been checked
} while ( j > i );
// Put the pivot element at its final position if possible
if ( A[i] > pivot )
swap ( A, i, right );
// Return the border / position of the pivot element
return i;
}
交换正常
public static void swap(int[] A, int first, int second) {
int temp = A[first];
A[first] = A[second];
A[second] = temp;
}
另请注意,此代码中无需使用temp
。您的代码在其签名中声明它但从不使用它。
答案 1 :(得分:1)
这是我提出的代码。在这里,我把最正确的价值作为枢纽价值并继续前进。通过递归进一步进行。希望你有所了解。
public class QuickSortDemo {
public static void main(String[] args) {
int[] input = {6, 3, 2, 5, 4};
int[] output = quickSort(input, 0, input.length-1);
for(int a : output) {
System.out.println(a);
}}
public static int[] quickSort(int[] array, int lowerIndex, int higherIndex) {
int i = lowerIndex;
int j = higherIndex;
// calculate pivot number, rightmost value
int pivot = array[higherIndex];
// Divide into two arrays
while (i <= j) {
while (array[i] < pivot) {
i++;
}
while (array[j] > pivot) {
j--;
}
if (i <= j) {
int temp = array[i];
array[i] = array[j];
array[j] = temp;
//move index to next position on both sides
i++;
j--;
}
}
// call quickSort() method recursively
if (lowerIndex < j)
quickSort(array,lowerIndex, j);
if (i < higherIndex)
quickSort(array, i, higherIndex);
return array;
}
}