public class IntQuickSorter
{
public static int numOfComps = 0,
numOfSwaps = 0;
public static void main(String[] args)
{
// Create an int array with test values.
int[] values = { 1, 2, 3, 4, 5, 6 };
//int[] values = { 5, 1, 3, 6, 4, 2 };
//int[] values = { 5, 7, 2, 8, 9, 1 };
System.out.println("\n\nQuick Sort:");
// Display the array's contents.
System.out.println("\nOriginal order: ");
for (int element : values)
System.out.print(element + " ");
// Sort the array.
quickSort(values);
//System.out.println("\n\nNumber of comps = " + numOfComps);
//System.out.println("Number of swaps = " + numOfSwaps);
// Display the array's contents.
System.out.println("\nSorted order: ");
for (int element : values)
System.out.print(element + " ");
System.out.println();
}
public static void quickSort(int array[])
{
doQuickSort(array, 0, array.length - 1);
System.out.println("\n\nNumber of comps = " + numOfComps);
System.out.println("Number of swaps = " + numOfSwaps);
}
private static void doQuickSort(int array[], int start, int end)
{
int pivotPoint;
if (start < end)
{
numOfComps++;
// Get the pivot point.
pivotPoint = partition(array, start, end);
// Sort the first sub list.
doQuickSort(array, start, pivotPoint - 1);
// Sort the second sub list.
doQuickSort(array, pivotPoint + 1, end);
}
}
private static int partition(int array[], int start, int end)
{
int pivotValue; // To hold the pivot value
int endOfLeftList; // Last element in the left sub list.
int mid; // To hold the mid-point subscript
// Find the subscript of the middle element.
// This will be our pivot value.
mid = (start + end) / 2;
// Swap the middle element with the first element.
// This moves the pivot value to the start of
// the list.
swap(array, start, mid);
// Save the pivot value for comparisons.
pivotValue = array[start];
// For now, the end of the left sub list is
// the first element.
endOfLeftList = start;
// Scan the entire list and move any values that
// are less than the pivot value to the left
// sub list.
for (int scan = start + 1; scan <= end; scan++)
{
if (array[scan] < pivotValue)
{
endOfLeftList++;
swap(array, endOfLeftList, scan);
numOfSwaps ++;
}
numOfComps++;
}
// Move the pivot value to end of the
// left sub list.
swap(array, start, endOfLeftList);
// Return the subscript of the pivot value.
return endOfLeftList;
}
private static void swap(int[] array, int a, int b)
{
int temp;
temp = array[a];
array[a] = array[b];
array[b] = temp;
}
}
如何使用Java编写此quicksort程序来计算比较次数和交换次数?我现在有交换代码的地方,它甚至会使用排序的数字数组来计算交换,它不应该。比较代码是否在正确的位置?谢谢你的帮助。
答案 0 :(得分:2)
我现在拥有交换代码,即使使用已排序的数字数组也会对交换进行计数,并且它不应该。
这不太准确。排序后的数组将与快速排序进行一些交换,这就是转动和分区的工作方式。这是使用排序列表的典型快速排序的动画。 Animation gist
另外,删除此比较:
if (start < end)
{
numOfComps++;
因为那不是&#34;关键比较&#34;数组中的两件事,只是你的指数 除此之外,您的比较和掉期看起来都在正确的位置。
答案 1 :(得分:-1)
您可以使用以下方法http://docs.oracle.com/javase/8/docs/api/java/util/Collections.html#sort-java.util.List-
据我记得它使用快速排序算法
当你实现自己的比较器时,你可以在调用比较器时增加计数器(比较次数),并在一个值大于其他值时增加其他计数器(然后交换发生)。