496-下一个更大元素 Ⅰ
Posted angelica-duhurica
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了496-下一个更大元素 Ⅰ相关的知识,希望对你有一定的参考价值。
496-下一个更大元素 Ⅰ
给定两个没有重复元素的数组 nums1
和 nums2
,其中nums1
是 nums2
的子集。找到 nums1
中每个元素在 nums2
中的下一个比其大的值。
nums1
中数字 x 的下一个更大元素是指 x 在 nums2
中对应位置的右边的第一个比 x 大的元素。如果不存在,对应位置输出-1。
示例 1:
输入: nums1 = [4,1,2], nums2 = [1,3,4,2].
输出: [-1,3,-1]
解释:
对于num1中的数字4,你无法在第二个数组中找到下一个更大的数字,因此输出 -1。
对于num1中的数字1,第二个数组中数字1右边的下一个较大数字是 3。
对于num1中的数字2,第二个数组中没有下一个更大的数字,因此输出 -1。
示例 2:
输入: nums1 = [2,4], nums2 = [1,2,3,4].
输出: [3,-1]
解释:
对于num1中的数字2,第二个数组中的下一个较大数字是3。
对于num1中的数字4,第二个数组中没有下一个更大的数字,因此输出 -1。
注意:
nums1
和nums2
中所有元素是唯一的。nums1
和nums2
的数组大小都不超过1000。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/next-greater-element-i
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
public int[] nextGreaterElement(int[] nums1, int[] nums2) {
int[] res = new int[nums1.length];
int i;
for (int j = 0; j < nums1.length; j++) {
boolean flag = false;
for (i = 0; i < nums2.length; i++) {
if (nums2[i] == nums1[j]) {
flag = true;
}
if (flag && nums2[i] > nums1[j]) {
res[j] = nums2[i];
break;
}
}
if(flag && i == nums2.length) {
res[j] = -1;
}
}
return res;
}
public int[] nextGreaterElement(int[] nums1, int[] nums2) {
// 单调栈
Stack<Integer> stack = new Stack<>();
HashMap<Integer, Integer> map = new HashMap<>();
for (int value : nums2) {
while (!stack.empty() && value > stack.peek()) {
map.put(stack.pop(), value);
}
stack.push(value);
}
int[] res = new int[nums1.length];
while (!stack.empty()) {
map.put(stack.pop(), -1);
}
for (int j = 0; j < nums1.length; j++) {
res[j] = map.get(nums1[j]);
}
return res;
}
以上是关于496-下一个更大元素 Ⅰ的主要内容,如果未能解决你的问题,请参考以下文章