其他分享
首页 > 其他分享> > 刷题-力扣-面试题 10.11. 峰与谷

刷题-力扣-面试题 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]

提示:

题目分析

  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;
    }
};

标签:index,面试题,题目,nums,int,整数,力扣,数组,10.11
来源: https://www.cnblogs.com/HanYG/p/15988993.html