Merge pull request #5042 from fmm/patch-1

Update FindKthLargest.java
This commit is contained in:
Loredana Crusoveanu
2018-10-05 15:54:56 +03:00
committed by GitHub

View File

@@ -98,7 +98,7 @@ public class FindKthLargest {
private int randomPartition(Integer arr[], int left, int right) {
int n = right - left + 1;
int pivot = (int) (Math.random()) % n;
int pivot = (int) (Math.random() * n);
swap(arr, left + pivot, right);
return partition(arr, left, right);
}