/FindKthLargest.java Secret
Last active
October 8, 2022 09:42
Revisions
-
pirate-kiiiing revised this gist
Oct 8, 2022 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,12 +2,12 @@ public int findKthLargest(int[] nums, int k) { return quickSelect(nums, 0, nums.length - 1, nums.length - k); } private int quickSelect(int[] nums, int l, int r, int k) { int p = partition(nums, l, r); if (p < k) return quickSelect(nums, p + 1, r, k); if (p > k) return quickSelect(nums, l, p - 1, k); return nums[p]; } private int partition(int[] nums, int l, int r) { int pivot = nums[r]; int p = r; for (int i = l; i < p; i++) { -
pirate-kiiiing revised this gist
Oct 8, 2022 . No changes.There are no files selected for viewing
-
pirate-kiiiing renamed this gist
Oct 6, 2022 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
pirate-kiiiing revised this gist
Oct 6, 2022 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,10 @@ public int findKthLargest(int[] nums, int k) { return quickSelect(nums, 0, nums.length - 1, nums.length - k); } private int quickSelect(int[] nums, int l, int r, int k) { int p = partition(nums, l, r, k); if (p < k) return quickSelect(nums, p + 1, r, k); if (p > k) return quickSelect(nums, l, p - 1, k); return nums[p]; } private int partition(int[] nums, int l, int r, int k) { -
pirate-kiiiing created this gist
Oct 6, 2022 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ public int findKthLargest(int[] nums, int k) { return qselect(nums, 0, nums.length - 1, nums.length - k); } private int qselect(int[] nums, int l, int r, int k) { int p = partition(nums, l, r, k); if (p < k) return qselect(nums, p + 1, r, k); if (p > k) return qselect(nums, l, p - 1, k); return nums[p]; } private int partition(int[] nums, int l, int r, int k) { int pivot = nums[r]; int p = r; for (int i = l; i < p; i++) { if (nums[i] > pivot) { swap(nums, i, p - 1); swap(nums, p, p - 1); i--; p--; } } return p; } private void swap(int[] nums, int a, int b) { int tmp = nums[a]; nums[a] = nums[b]; nums[b] = tmp; }