day59

Posted Ahh三七

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day59相关的知识,希望对你有一定的参考价值。

1、leetcode503 下一个更大元素Ⅱ

class Solution 
    public int[] nextGreaterElements(int[] nums) 
        int[] res = new int[nums.length];
        Arrays.fill(res, -1);
        Deque<Integer> dq = new ArrayDeque<>();

        for(int i=0; i<nums.length*2; i++) 
            while(!dq.isEmpty() && nums[dq.peekLast()]<nums[i%nums.length]) 
                int index = dq.pollLast();
                res[index] = nums[i%nums.length];
            
            dq.addLast(i%nums.length);
            
        

        return res;
    


2、leetcode42 接雨水

  1. 当前列雨水面积:min(左边柱子的最高高度,记录右边柱子的最高高度) - 当前柱子高度。

  2. 代码

    class Solution 
        public int trap(int[] height) 
            int leftMax = 0;
            int rightMax = 0;
            int rainSum = 0;
    
            for(int i=0; i<height.length; i++) 
                if(i==0 || i==height.length-1) 
                    continue;
                
    
                leftMax = height[i];
                for(int l=i-1; l>=0; l--) 
                    leftMax = Math.max(leftMax, height[l]);
                
    
                rightMax = height[i];
                for(int r=i+1; r<height.length; r++) 
                    rightMax = Math.max(rightMax, height[r]);
                
    
                rainSum += (Math.min(leftMax, rightMax)-height[i]);
            
    
            return rainSum;
        
    
    

以上是关于day59的主要内容,如果未能解决你的问题,请参考以下文章

Python Day59 jQuery2

day59——数据处理

moment获取天的23时59分59秒可以用moment().endOf(String),以及获取天的0时0分0秒可以用moment().startOf('day')

Day59 Nacos 注册中心

剑指offer打卡day25 —— Acwing 59. 把数字翻译成字符串

剑指offer打卡day25 —— Acwing 59. 把数字翻译成字符串