[leetcode] 503. Next Greater Element II

博客围绕循环数组展开,要找出数组中每个元素按顺序的下一个较大数,若不存在则输出 -1。介绍了遍历两倍数组的分析思路,通过坐标取余操作,利用栈来建立元素与较大数的映射。还给出了相关代码及参考文献。

Description

Given a circular array (the next element of the last element is the first element of the array), print the Next Greater Number for every element. The Next Greater Number of a number x is the first greater number to its traversing-order next in the array, which means you could search circularly to find its next greater number. If it doesn’t exist, output -1 for this number.

Example 1:

Input:

 [1,2,1]

Output:

 [2,-1,2]

Explanation:

The first 1's next greater number is 2; 
The number 2 can't find next greater number; 
The second 1's next greater number needs to search circularly, which is also 2.

Note: The length of given array won’t exceed 10000.

分析

题目的意思是:就是给你一个数组,然后找出每个位置上比这个位置(按顺序)上的数稍大的一个数。看例子就可以懂。

  • 遍历两倍的数组,然后还是坐标i对n取余,取出数字,如果此时栈不为空,且栈顶元素小于当前数字,说明当前数字就是栈顶元素的右边第一个较大数,那么建立二者的映射,并且去除当前栈顶元素,最后如果i小于n,则把i压入栈。因为res的长度必须是n,超过n的部分我们只是为了给之前栈中的数字找较大值,所以不能压入栈。

代码

class Solution {
public:
    vector<int> nextGreaterElements(vector<int>& nums) {
        int n=nums.size();
        vector<int> res(n,-1);
        stack<int> s;
        for(int i=0;i<2*n;i++){
            int num=nums[i%n];
            while(!s.empty()&&nums[s.top()]<num){
                res[s.top()]=num;
                s.pop();
            }
            if(i<n) s.push(i);
        }
        return res;
    }
};

参考文献

[LeetCode] Next Greater Element II 下一个较大的元素之二

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值