forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_324.java
66 lines (54 loc) · 1.89 KB
/
_324.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
package com.fishercoder.solutions;
import java.util.Collections;
import java.util.PriorityQueue;
/**
* 324. Wiggle Sort II
*
* Given an unsorted array nums, reorder it such that nums[0] < nums[1] > nums[2] < nums[3]....
Example:
(1) Given nums = [1, 5, 1, 1, 6, 4], one possible answer is [1, 4, 1, 5, 1, 6].
(2) Given nums = [1, 3, 2, 2, 3, 1], one possible answer is [2, 3, 1, 3, 1, 2].
Note:
You may assume all input has valid answer.
Follow Up:
Can you do it in O(n) time and/or in-place with O(1) extra space?
*/
public class _324 {
public static class Solution1 {
/** Credit: https://discuss.leetcode.com/topic/41464/step-by-step-explanation-of-index-mapping-in-java */
public void wiggleSort(int[] nums) {
int median = findKthLargest(nums, (nums.length + 1) / 2);
int n = nums.length;
int left = 0;
int i = 0;
int right = n - 1;
while (i <= right) {
if (nums[newIndex(i, n)] > median) {
swap(nums, newIndex(left++, n), newIndex(i++, n));
} else if (nums[newIndex(i, n)] < median) {
swap(nums, newIndex(right--, n), newIndex(i, n));
} else {
i++;
}
}
}
private int findKthLargest(int[] nums, int k) {
PriorityQueue<Integer> maxHeap = new PriorityQueue<>(Collections.reverseOrder());
for (int i : nums) {
maxHeap.offer(i);
}
while (k-- > 1) {
maxHeap.poll();
}
return maxHeap.poll();
}
private void swap(int[] nums, int i, int j) {
int tmp = nums[i];
nums[i] = nums[j];
nums[j] = tmp;
}
private int newIndex(int index, int n) {
return (1 + 2 * index) % (n | 1);
}
}
}