Last updated
Was this helpful?
Last updated
Was this helpful?
https://leetcode.com/problems/wiggle-sort-ii
Given an integer array nums
, reorder it such that nums[0] < nums[1] > nums[2] < nums[3]...
.
You may assume the input array always has a valid answer.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 5 * 104
0 <= nums[i] <= 5000
It is guaranteed that there will be an answer for the given input nums
.
Follow Up: Can you do it in O(n)
time and/or in-place with O(1)
extra space?
O(nlogn) time, but it's faster than previous solution, weird
0(N) time, O(1) space. But it's insanely hard to understand. See this post: https://leetcode.com/problems/wiggle-sort-ii/discuss/77682/step-by-step-explanation-of-index-mapping-in-java.
Find kth element, same with
Difficult part is how to rearrange the new array. See .