280 Wiggle Sort
280. Wiggle Sort
1. Question
Given an unsorted arraynums
, reorder itin-placesuch thatnums[0] <= nums[1] >= nums[2] <= nums[3]...
.
For example, givennums = [3, 5, 2, 1, 6, 4]
, one possible answer is[1, 6, 2, 5, 3, 4]
.
2. Implementation
3. Time & Space Complexity
时间复杂度O(n), 空间复杂度O(1)
Last updated