1. 程式人生 > >[LeetCode] Next Greater Element II 下一個較大的元素之二

[LeetCode] Next Greater Element II 下一個較大的元素之二

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.

這道題是之前那道Next Greater Element I

的拓展,不同的是,此時陣列是一個迴圈陣列,就是說某一個元素的下一個較大值可以在其前面,那麼對於迴圈陣列的遍歷,為了使下標不超過陣列的長度,我們需要對n取餘,下面先來看暴力破解的方法,遍歷每一個數字,然後對於每一個遍歷到的數字,遍歷所有其他數字,注意不是遍歷到陣列末尾,而是通過迴圈陣列遍歷其前一個數字,遇到較大值則存入結果res中,並break,再進行下一個數字的遍歷,參見程式碼如下: 

解法一:

class Solution {
public:
    vector<int> nextGreaterElements(vector<int>& nums) {
        
int n = nums.size(); vector<int> res(n, -1); for (int i = 0; i < n; ++i) { for (int j = i + 1; j < i + n; ++j) { if (nums[j % n] > nums[i]) { res[i] = nums[j % n]; break; } } } return res; } };

我們可以使用棧來進行優化上面的演算法,我們遍歷兩倍的陣列,然後還是座標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> st;
        for (int i = 0; i < 2 * n; ++i) {
            int num = nums[i % n];
            while (!st.empty() && nums[st.top()] < num) {
                res[st.top()] = num; st.pop();
            }
            if (i < n) st.push(i);
        }
        return res;
    }
};

類似題目:

參考資料: