刷题-力扣-面试题 10.11. 峰与谷

2022/3/10 23:19:33

本文主要是介绍刷题-力扣-面试题 10.11. 峰与谷,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

题目链接

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/peaks-and-valleys-lcci
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

题目描述

在一个整数数组中,“峰”是大于或等于相邻整数的元素,相应地,“谷”是小于或等于相邻整数的元素。例如,在数组{5, 8, 4, 2, 3, 4, 6}中,{8, 6}是峰, {5, 2}是谷。现在给定一个整数数组,将该数组按峰与谷的交替顺序排序。

示例:

输入: [5, 3, 1, 2, 3]
输出: [5, 1, 3, 2, 3]

提示:

  • nums.length <= 10000

题目分析

  1. 根据题目描述,按照峰谷交替排序数组
  2. 先对数组按非递增排序,在两两交换数组元素

代码

class Solution {
public:
    void wiggleSort(vector<int>& nums) {
        
        /*
        5 3 1 2 3
        5 3 3 2 1
        5 3 3 1 2
        */
        int index = 1;
        int numsLen = nums.size();
        std::sort(nums.begin(), nums.end(), compare);
        while (index < numsLen) {
            std::swap(nums[index], nums[index - 1]);
            index += 2;
        }
        return;
    }

private:
    static bool compare(int a, int b) {
        return a > b;
    }
};


这篇关于刷题-力扣-面试题 10.11. 峰与谷的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程