[Leetcode] largest rectangle in histogram 直方图中最大的矩形

问题

给定一个数组height,储存各个矩形条的高。宽度为1。找出直方图的最大矩形。

思路

创建一个栈,用于储存数组的下标。对于数组的每个元素,
1. 如果栈为空,或height[i]大于等于height[栈顶元素],那么将矩形条i压入栈中.
2. 如果height[i]小于height[栈顶元素],那么将栈顶元素出栈,计算最大矩形的面积,高为height[temp],temp为刚才出栈的元素。如果此时栈非空,那么宽度为i-1-stack.peek();如果为空,则宽度为i.
3. 如果遍历的i等于arr.length。那么将栈中所有的元素都出栈,更新最大矩形的面积。
代码如下:

public static int largestRectangleArea(int[] height){
        Stack<Integer> stack = new Stack<>();
        int result = 0;
        for(int i=0;i<=height.length;i++){
            if(i == height.length){
                while(!stack.isEmpty() ){
                    int temp = stack.pop();
                    result = Math.max(result, height[temp]*(stack.empty()?i:(i-stack.peek()-1)));
                }
            }
            else if(stack.isEmpty() || height[stack.peek()] <= height[i]){
                stack.push(i);
            }else{
                int temp = stack.pop();
                result = Math.max(result, height[temp]*(stack.empty()?i:(i-stack.peek()-1)));
                --i;
            }
        }
        return result;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值