随机化快速排序(Java 实例代码)
public class RandomizedQuickSort {
private static int partition(int[] arr, int low, int high) {
// 随机选择一个元素作为枢纽值
swap(arr, low + (int)(Math.random() * (high - low + 1)), high);
return hoarePartition(arr, low, high);
}
private static int hoarePartition(int[] arr, int low, int high) {
// 使用Hoare的Partition方案进行划分
int pivot = arr[high];
int i = (low - 1);
for (int j = low; j < high; j++) {
if (arr[j] < pivot) {
i++;
swap(arr, i, j);
}
}
swap(arr, i + 1, high);
return i + 1;
}
private static void swap(int[] arr, int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
public static void randomizedQuickSort(int[] arr, int low, int high) {
if (low < high) {
int pi = partition(arr, low, high);
randomizedQuickSort(arr, low, pi - 1);
randomizedQuickSort(arr, pi + 1, high);
}
}
public static void main(String[] args) {
int[] arr = {10, 7, 8, 9, 1, 5};
randomizedQuickSort(arr, 0, arr.length - 1);
System.out.println("Sorted array:");
for (int val : arr) {
System.out.print(val + " ");
}
}
}
这段代码实现了随机化快速排序算法。首先,我们定义了一个partition
函数,它随机选择一个元素并将其放置在数组的最高位置,然后使用经典的Hoare Partition方案进行划分。随后,我们定义了一个递归的randomizedQuickSort
函数,它递归地对选定的子数组进行排序。最后,在main
方法中,我们创建了一个数组并调用randomizedQuickSort
进行排序,然后打印排序后的数组。
评论已关闭