博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
摆动排序 Wiggle Sort II
阅读量:6765 次
发布时间:2019-06-26

本文共 1051 字,大约阅读时间需要 3 分钟。

hot3.png

问题:

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?

解决:

① 排序法。先给数组排序,然后再做调整。调整的方法是找到数组的中间的数,相当于把有序数组从中间分成两部分,然后从前半段的末尾取一个,在从后半的末尾取一个,这样保证了第一个数小于第二个数,然后从前半段取倒数第二个,从后半段取倒数第二个,这保证了第二个数大于第三个数,且第三个数小于第四个数,以此类推直至都取完。空间复杂度O(n)。

class Solution { //7ms

    public void wiggleSort(int[] nums) {
        Arrays.sort(nums);
        int len = nums.length;
        int[] tmp = new int[len];
        int mid = (len - 1) / 2;
        int index = 0;
        for (int i = 0;i <= mid;i ++){
            tmp[index] = nums[mid - i];
            if (index + 1 < len){
                tmp[index + 1] = nums[len - 1 - i];
            }
            index += 2;
        }
        System.arraycopy(tmp,0,nums,0,len);
    }
}

② 可以使用快排。

https://discuss.leetcode.com/topic/41464/step-by-step-explanation-of-index-mapping-in-java

转载于:https://my.oschina.net/liyurong/blog/1594309

你可能感兴趣的文章
回首2011年
查看>>
ubuntu安装软件太慢中断出现Could not get lock /var/lib/dpkg/l
查看>>
iOS之路16-XML解析
查看>>
.gitignore的说明
查看>>
hashmap的扩容机制
查看>>
C++是很危险的:第一章 构造函数:第三节 构造函数与初始化列表
查看>>
我的友情链接
查看>>
返回某集合的所有子集
查看>>
测试笔
查看>>
设计数据库的,编写SQL查询,返回优等生名单(排名10%),以平均分排序
查看>>
基本概念学习(1003)---嵌入式系统
查看>>
MySQL数据按年、月、天分组查询数据
查看>>
页面局部打印(js方法)
查看>>
通用定时器示例
查看>>
加密芯片的对比
查看>>
mysql忘记root密码解决办法
查看>>
Cisco IPSec一些基本命令(参考)
查看>>
Ubuntu下管理启动服务
查看>>
第7章 解析HTML和XHTML
查看>>
openfire集群
查看>>