问题描述
You are given two arrays (without duplicates) nums1 and nums2 where nums1’s elements are subset of nums2. Find all the next greater numbers for nums1’s elements in the corresponding places of nums2.
The Next Greater Number of a number x in nums1 is the first greater number to its right in nums2. If it does not exist, output -1 for this number.
给你两个数组,其中nums1
是nums2
的子集。
遍历nums1
的每个元素,找到对应nums2
中的下一个更大值,若无,则返回-1
。
举个例子:
Input: nums1 = [4,1,2], nums2 = [1,3,4,2].
Output: [-1,3,-1]
解法1
典型的单调栈
问题。
梳理下思路:
首先,我们需要一个单调递减
栈,还有一个HashMap
。
那么Map
的作用是什么?
绑定当前元素与比它大的下一个元素。
然后,遍历nums1
,依次去map
中找即可。
来看下实现:
class Solution {
public int[] nextGreaterElement(int[] nums1, int[] nums2) {
// <key, val> -> <element, nextGreater>
HashMap<Integer, Integer> map = new HashMap<>();
ArrayDeque<Integer> stack = new ArrayDeque<>();
int n = nums2.length;
// 1. Fill the map.
for (int i = n - 1; i >= 0; i--){
int cur = nums2[i];
while (!stack.isEmpty() && cur >= stack.peek()){
stack.pop();
}
int next = stack.isEmpty() ? -1 : stack.peek();
map.put(cur, next);
stack.push(cur);
}
// 2. Find the next greater number.
for (int i = 0; i < nums1.length; i++){
int cur = nums1[i];
nums1[i] = map.get(cur);
}
return nums1;
}
}
Enjoy it !