forked from Revnth/Hacktoberfest2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RandomisedQuickSort.java
67 lines (56 loc) · 2.23 KB
/
RandomisedQuickSort.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package DSAalgorithm;
import java.util.Scanner;
import java.util.Random;
class QuickSort1{
private static Random random = new Random();
public static void swap(int[] arr, int a, int b) {
int temp = arr[a];
arr[a] = arr[b];
arr[b] = temp;
}
public static int partition(int[] arr, int lb, int ub) {
// Use the element at the upper bound as the pivot
int pivot = arr[ub];
int start = lb - 1; // Position of the smaller element
for (int i = lb; i < ub; i++) { // Loop from lb to ub - 1
if (arr[i] <= pivot) { // If current element is smaller than or equal to pivot
start++;
swap(arr, start, i); // Swap elements
}
}
// Swap pivot element to its correct position
swap(arr, start + 1, ub);
return start + 1; // Return the partition point
}
// Method to randomly select a pivot and move it to the end
private static void randomizePivot(int[] arr, int lb, int ub) {
int randomIndex = lb + random.nextInt(ub - lb + 1);
swap(arr, randomIndex, ub); // Move the random pivot to the end
}
public static void random_quick_sort(int[] arr, int lb, int ub) {
if (lb < ub) {
randomizePivot(arr, lb, ub); // Randomly select and move pivot to end
int loc = partition(arr, lb, ub); // Partition around the pivot
random_quick_sort(arr, lb, loc - 1); // Recursively sort the left part
random_quick_sort(arr, loc + 1, ub); // Recursively sort the right part
}
}
}
public class RandomisedQuickSort{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the size of array:");
int size = sc.nextInt();
int[] arr = new int[size];
System.out.println("Enter the elements of array:");
for (int i = 0; i < arr.length; i++) {
arr[i] = sc.nextInt();
}
QuickSort1.random_quick_sort(arr, 0, size - 1);
System.out.println("Sorted Array is:");
for (int i : arr) {
System.out.println(i);
}
sc.close();
}
}