[LintCode] Problem 508 - Wiggle Sort
Given an unsorted array nums, reorder it in-place such that nums[0] <= nums[1] >= nums[2] <= nums[3]….
ExampleInput: nums = [3,5,2,1,6,4]
Out
...
写BUG的程序猿