Stack<Interger> stack=new stack<>();
for(int i=0;i<nums.length;i++){
while(!stack.empty()&&nums[i]>stack.peek()){
//记录结果
}
stack.push(nums[i]);
}
while(!stack.empty()){
//处理剩余元素
}
题目描述:496. 下一个更大元素 I
给定两个 没有重复元素 的数组 nums1 和 nums2 ,其中nums1 是 nums2 的子集。找到 nums1 中每个元素在 nums2 中的下一个比其大的值。
nums1 中数字 x 的下一个更大元素是指 x 在 nums2 中对应位置的右边的第一个比 x 大的元素。如果不存在,对应位置输出 -1 。
输入: nums1 = [4,1,2], nums2 = [1,3,4,2].
输出: [-1,3,-1]
解释:
对于num1中的数字4,你无法在第二个数组中找到下一个更大的数字,因此输出 -1。
对于num1中的数字1,第二个数组中数字1右边的下一个较大数字是 3。
对于num1中的数字2,第二个数组中没有下一个更大的数字,因此输出 -1。
public class Solution{
public int[] nextGreaterElement(int[] findNums,int [] nums){
Stack<Interger> stack=new stack<>();
HashMap<Integer,Integer> map=new HashMap<>();
int[] res=new int[findNums.length];
for(int i=0;i<nums.length;i++){
while(!stack.empty()&&nums[i]>stack.peek()){
map.put(stack.pop(),nums);
}
stack.push(nums[i]);
}
while(!stack.empty()){
map.put(stack.pop(),-1);
}
for(int i=0;i<findNums.length;i++){
res[i]=map.get(findNums);
}
return res;
}
}
题目描述:739. 每日温度
请根据每日 气温 列表,重新生成一个列表。对应位置的输出为:要想观测到更高的气温,至少需要等待的天数。如果气温在这之后都不会升高,请在该位置用 0 来代替。
例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1, 4, 2, 1, 1, 0, 0]。
提示:气温 列表长度的范围是 [1, 30000]。每个气温的值的均为华氏度,都是在 [30, 100] 范围内的整数。
class Solution {
public int[] dailyTemperatures(int[] T) {
if(T==null||T.length<=0){
return new int[0];
}
int len=T.length;
int[] res=new int[len];
Stack<Integer> stack=new Stack<>();
int index=0;
for(int i=0;i<len;i++){
while(!stack.isEmpty()&&T[i]>T[stack.peek()]){
res[stack.peek()]=i-stack.pop();
}
stack.push(i);
}
while(!stack.isEmpty()){
res[stack.pop()]=0;
}
return res;
}
}
题目链接:901. 股票价格跨度
编写一个 StockSpanner 类,它收集某些股票的每日报价,并返回该股票当日价格的跨度。
今天股票价格的跨度被定义为股票价格小于或等于今天价格的最大连续日数(从今天开始往回数,包括今天)。
例如,如果未来7天股票的价格是 [100, 80, 60, 70, 60, 75, 85],那么股票跨度将是 [1, 1, 1, 2, 1, 4, 6]。
注意这道题目是包括今天,往前看,因此今天的加工应该大于之前的价格。包括今天的话,跨度的初始值应为1
class StockSpanner {
private Stack<Integer> prices;
private Stack<Integer> weights;
public StockSpanner() {
prices=new Stack<Integer>();
weights=new Stack<Integer>();
}
public int next(int price) {
int w=1;
while(!prices.isEmpty()&&price>prices.peek()){
prices.pop();
w+=weights.pop();
}
prices.push(price);
weights.push(w);
return w;
}
}