- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathFindKthNumber.java
82 lines (69 loc) · 2.57 KB
/
FindKthNumber.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
packagecom.thealgorithms.maths;
importjava.util.Collections;
importjava.util.PriorityQueue;
importjava.util.Random;
/**
* Use a quicksort-based approach to identify the k-th largest or k-th max element within the provided array.
*/
publicfinalclassFindKthNumber {
privateFindKthNumber() {
}
privatestaticfinalRandomRANDOM = newRandom();
publicstaticintfindKthMax(int[] array, intk) {
if (k <= 0 || k > array.length) {
thrownewIllegalArgumentException("k must be between 1 and the size of the array");
}
// Convert k-th largest to index for QuickSelect
returnquickSelect(array, 0, array.length - 1, array.length - k);
}
privatestaticintquickSelect(int[] array, intleft, intright, intkSmallest) {
if (left == right) {
returnarray[left];
}
// Randomly select a pivot index
intpivotIndex = left + RANDOM.nextInt(right - left + 1);
pivotIndex = partition(array, left, right, pivotIndex);
if (kSmallest == pivotIndex) {
returnarray[kSmallest];
} elseif (kSmallest < pivotIndex) {
returnquickSelect(array, left, pivotIndex - 1, kSmallest);
} else {
returnquickSelect(array, pivotIndex + 1, right, kSmallest);
}
}
privatestaticintpartition(int[] array, intleft, intright, intpivotIndex) {
intpivotValue = array[pivotIndex];
// Move pivot to end
swap(array, pivotIndex, right);
intstoreIndex = left;
// Move all smaller elements to the left
for (inti = left; i < right; i++) {
if (array[i] < pivotValue) {
swap(array, storeIndex, i);
storeIndex++;
}
}
// Move pivot to its final place
swap(array, storeIndex, right);
returnstoreIndex;
}
privatestaticvoidswap(int[] array, inti, intj) {
inttemp = array[i];
array[i] = array[j];
array[j] = temp;
}
publicstaticintfindKthMaxUsingHeap(int[] array, intk) {
if (k <= 0 || k > array.length) {
thrownewIllegalArgumentException("k must be between 1 and the size of the array");
}
PriorityQueue<Integer> maxHeap = newPriorityQueue<>(Collections.reverseOrder()); // using max-heap to store numbers.
for (intnum : array) {
maxHeap.add(num);
}
while (k > 1) {
maxHeap.poll(); // removing max number from heap
k--;
}
returnmaxHeap.peek();
}
}