LeetCode:739. 每日温度 && 496.下一个更大元素 I

739. 每日温度

题目

给定一个整数数组 temperatures ,表示每天的温度,返回一个数组 answer ,其中 answer[i] 是指对于第 i 天,下一个更高温度出现在几天后。如果气温在这之后都不会升高,请在该位置用 0 来代替。
LeetCode:739. 每日温度 && 496.下一个更大元素 I_第1张图片

单调栈(从0开始)

class Solution {
    public int[] dailyTemperatures(int[] temperatures) {
        int len = temperatures.length;
        int[] res = new int[len];
        Deque<Integer> stack = new LinkedList<>();
        for(int i = 0; i < len; i++){
            while(!stack.isEmpty() && temperatures[i] > temperatures[stack.peek()]){
                res[stack.peek()] = i - stack.peek();
                stack.pop();
            }
            stack.push(i);
        }
        return res;
    }
}

单调栈(从1开始)

class Solution {
    public int[] dailyTemperatures(int[] temperatures) {
        int len = temperatures.length;
        int[] res = new int[len];
        Deque<Integer> stack = new LinkedList<>();
        stack.push(0);
        /*
        当i所对应的元素 <= 栈顶的元素,则将数组元素压入栈中
        当i所对应的元素 > 栈顶的元素,则将i - 栈顶元素,即可得到相减的下标距离
         */
        for(int i = 1; i < len; i++){
            if(temperatures[i] <= temperatures[stack.peek()]){
                stack.push(i);
            }else{
                while(!stack.isEmpty() && temperatures[i] > temperatures[stack.peek()]){
                    res[stack.peek()] = i - stack.peek();
                    stack.pop();
                }
            }
            stack.push(i);
        }
        return res;
    }
}

496.下一个更大元素 I

题目

nums1 中数字 x 的 下一个更大元素 是指 x 在 nums2 中对应位置 右侧 的 第一个 比 x 大的元素。
给你两个 没有重复元素 的数组 nums1 和 nums2 ,下标从 0 开始计数,其中nums1 是 nums2 的子集。
对于每个 0 <= i < nums1.length ,找出满足 nums1[i] == nums2[j] 的下标 j ,并且在 nums2 确定 nums2[j] 的 下一个更大元素 。如果不存在下一个更大元素,那么本次查询的答案是 -1 。
返回一个长度为 nums1.length 的数组 ans 作为答案,满足 ans[i] 是如上所述的 下一个更大元素 。
LeetCode:739. 每日温度 && 496.下一个更大元素 I_第2张图片

单调栈(从0开始)

class Solution {
    public int[] nextGreaterElement(int[] nums1, int[] nums2) {
        int[] res = new int[nums1.length];
        HashMap<Integer, Integer> map = new HashMap<>();
        for(int i = 0; i < nums1.length; i++){
            map.put(nums1[i], i);
        }

        Stack<Integer> stack = new Stack<>();
        Arrays.fill(res, -1);

        for(int i = 0; i < nums2.length; i++){
            while(!stack.isEmpty() && nums2[stack.peek()] < nums2[i]){
                int pre = nums2[stack.pop()];
                if(map.containsKey(pre)){
                    res[map.get(pre)] =nums2[i];
                }
            }
            stack.push(i);
        }
        return res;
    }
}

单调栈(从1开始)

class Solution {
    public int[] nextGreaterElement(int[] nums1, int[] nums2) {
        int[] res = new int[nums1.length];
        
        Stack<Integer> stack = new Stack<>();
        Arrays.fill(res, -1);
        
        HashMap<Integer, Integer> map = new HashMap<>();
        for(int i = 0; i < nums1.length; i++){
            map.put(nums1[i], i);
        }
        stack.add(0);
        

        for(int i = 1; i < nums2.length; i++){
            if(nums2[i] <= nums2[stack.peek()]){
                stack.add(i);
            }else{
                while(!stack.isEmpty() && nums2[stack.peek()] < nums2[i]){
                    int pre = nums2[stack.peek()];
                    if(map.containsKey(pre)){
                        res[map.get(pre)] =nums2[i];
                    }
                    stack.pop();
                }
                stack.add(i);
            }
        }
        return res;
    }
}

你可能感兴趣的:(LeetCode,leetcode,算法,单调栈,java)