首页 > 其他 > 详细

Wiggle SortII

时间:2016-07-02 08:00:54      阅读:221      评论:0      收藏:0      [点我收藏+]
 1 public class Solution {
 2     public void wiggleSort(int[] nums) {
 3         Arrays.sort(nums);
 4         
 5         int[] result = new int[nums.length];
 6         int bound = nums.length % 2 == 1 ? nums.length / 2 : nums.length / 2 - 1;
 7         int i = bound;
 8         int j = nums.length - 1;
 9         int index = 0;
10         
11         while (i <= bound) {
12             result[index++] = nums[i--];
13             if (j > bound) {
14                 result[index++] = nums[j--];
15             }
16         }
17         
18         for (i = 0; i < nums.length; i++) {
19             nums[i] = result[i];
20         }
21     }
22 }

1. Use backward arrangement in case of [4, 5, 5, 6].

Wiggle SortII

原文:http://www.cnblogs.com/shuashuashua/p/5634708.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!