前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【LEETCODE】模拟面试-84-Largest Rectangle in Histogram

【LEETCODE】模拟面试-84-Largest Rectangle in Histogram

作者头像
杨熹
发布2018-04-03 14:56:40
6610
发布2018-04-03 14:56:40
举报
文章被收录于专栏:杨熹的专栏

题目:

https://leetcode.com/problems/largest-rectangle-in-histogram/

Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.

Above is a histogram where width of each bar is 1, given height = [2,1,5,6,2,3] .

The largest rectangle is shown in the shaded area, which has area = 10 unit.

For example,Given heights = [2,1,5,6,2,3], return 10.

分析:

This question is to get a maximum area of largest rectangle in the histogram.

Input is an array. Output is an int;

The brute force method is to scan its left side and right side for each bar, till the left boundary and right boundary which are lower than this bar. Then the area would be its height times index of right boundary minus left boundary. After all the bars are calculated, we can get the max area.

Another method is not to calculate the repeated work during the scanning. For example, when we scan the right side of bar_index=2( height=5 ), its right boundary is bar_index=4( height=2 ). And when we start to scan the left boundary for bar_index=4( height=2 ), in fact, we should already know bar_index=2( height=5 ) can cover this bar, so it will save time if we reduce the duplicate scanning, and store them in a data structure.

Here, we try to use stack to store such information.

  1. We scan from left to right.
  2. We add bar's index where might be the left boundary of its following bars, of course including current bar itself.
  3. We stop adding index as soon as we meet a bar which is lower then the height of top in the stack, since it means we have found the right boundary of the newest bar in the stack.
  4. Then we can start to calculate the possible area which are covered by the histogram determined by the stack.
  5. The formula is easy: (right boundary index - left boundary index) * current height reminder: the right boundary index is where the stack is stopped. the nearest left boundary is just the one bar in front of current bar. the height of a bar can be calculated in the bar is which is higher than both of its left AND right boundary.

For detail explanation can be found in code.

Java

代码语言:javascript
复制
public class Solution {

    public int largestRectangleArea(int[] heights){
    
        if ( heights == null || heights.length == 0 )
            return 0;
        
        Deque<Integer> stack = new LinkedList<Integer>();   //store index
        int max = 0;
        
        for ( int i = 0; i <= heights.length; i++ ){
            
            int curVal = (i == heights.length) ? 0 : heights[i];                //如果i到array的外面了,curVal=0,否则就为当前index装的高度
            
            while ( !stack.isEmpty() && heights[stack.peekLast()] >= curVal ){      //curVal 小于heights[stack.peekLast()],说明cur是最顶端一点的右边界
                                                                                    //如果 curVal 大于stack.peekLast(),说明这是cur的一个左边界
                                                                                    //stack里每个元素都是后一个元素的左边界,停止add的时候说明碰到了右边界
                int height = heights[stack.pollLast()];                             //pollLast get height(index) AND REMOVE index from stack
                int leftBound = stack.isEmpty() ? 0 : (stack.peekLast() + 1);       //注意 why +1: since pollLast() removed
                int rightBound = i;
                max = Math.max( max, height * (rightBound - leftBound) );           //用公式计算面积
            }       

            stack.addLast(i);                           //stack=[1,4]时,说明 1处比4处值小,但是2处被弹出去了,说明4处曾经是2处的右边界,4处相当于凹心
            
        }
        
        
        return max;
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016.12.20 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目:
  • 分析:
  • Java
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档