# 503    Next Greater Element II

## 503. [Next Greater Element II](https://leetcode.com/problems/next-greater-element-ii/description/)

## 1. Question

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:**&#x54;he length of given array won't exceed 10000.

## 2. Implementation

思路：这道题和Next Greater Element I的区别就在于这里数组是一个环，所以数组最后的数组的Greater Next Element可能在它前面。方法就是**拆环成线**，另外和一个不同点是Next Greater Element I的输入是两个数组，而这里只有一个数组，所以stack存的是**数组的Index而不是数组的元素**

```java
class Solution {
    public int[] nextGreaterElements(int[] nums) {
        int n = nums.length;
        int[] res = new int[n];
        Arrays.fill(res, -1);

        Stack<Integer> stack = new Stack<>();

        for (int i = 0; i < 2 * n; i++) {
            int num = nums[i % n];
            while (!stack.isEmpty() && nums[stack.peek()] < num) {
                res[stack.pop()] = num;
            }

            if (i < n) {
                stack.push(i);
            }
        }

        return res;
    }
}
```

## 3. Time & Space Complexity

时间和空间复杂度都是O(n)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://protegejj.gitbook.io/algorithm-practice/leetcode/stack/503-next-greater-element-ii.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
