博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode]*84.Largest Rectangle in Histogram
阅读量:6816 次
发布时间:2019-06-26

本文共 2418 字,大约阅读时间需要 8 分钟。

题目

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 height = [2,1,5,6,2,3],
return 10.

思路

我们通过一个栈记录上升的柱子,如果如果下降的柱子,可以开始计算栈顶和之前柱子构建的矩形的面积。栈保存的是柱子的下标,而不是柱子的高度,目的是方便计算矩形的面积。遇到上升的柱子,就把柱子对应的下标压入栈。

代码

/*---------------------------------------*   日期:2015-05-13*   作者:SJF0115*   题目: 84.Largest Rectangle in Histogram*   网址:https://leetcode.com/problems/largest-rectangle-in-histogram/*   结果:AC*   来源:LeetCode*   博客:-----------------------------------------*/#include 
#include
#include
using namespace std;class Solution {public: int largestRectangleArea(vector
& height) { int maxArea = 0; int size = height.size(); if(size <= 0){ return maxArea; }//if // 下标 stack
indexStack; int top,width; for(int i = 0;i < size;++i){ // 栈空或上升序列 压入栈 if(indexStack.empty() || height[indexStack.top()] <= height[i]){ indexStack.push(i); }//if // 一旦下降了计算面积 else{ top = indexStack.top(); indexStack.pop(); // 栈为空 表示从第一个到当前的最低高度 width = indexStack.empty() ? i : (i - indexStack.top() - 1); maxArea = max(maxArea,height[top] * width); // 保持i的位置不变 --i; }//else }//for // 计算剩余上升序列面积 while(!indexStack.empty()){ top = indexStack.top(); indexStack.pop(); width = indexStack.empty() ? size : (size - indexStack.top() - 1); maxArea = max(maxArea,height[top] * width); }//while return maxArea; }};int main(){ Solution s; //vector
height = {2,1,5,6,2,3}; //vector
height = {2,1}; //vector
height = {1,2,3}; //vector
height = {2,1,2}; vector
height = { 4,2,0,3,2,5}; cout<
<

运行时间

这里写图片描述

你可能感兴趣的文章
openCV 二 图像处理
查看>>
Android 使用 ACTION_CALL 拨号
查看>>
求生之路刷服修改刷服器
查看>>
ADO.NET 基础
查看>>
网络编程中的CAP & 有趣的存储框架(关系型、NoSQL)全图
查看>>
Web前端开发基础 第四课(认识CSS样式)
查看>>
Mysql自增字段
查看>>
Java日期时间格式转换
查看>>
linux下常见的包安装方式
查看>>
html常用标签
查看>>
bitmap==null
查看>>
jQuery.事件委托
查看>>
计算机基础(二)
查看>>
跟我学算法-tensorflow 实现logistics 回归
查看>>
mongodb sort limit和skip用法
查看>>
新的一周
查看>>
Jabber Software:Jabber-NET、agsXMPP与Wilefire[转]
查看>>
java中判断字符串是否为数字的方法的几种方法 (转载)
查看>>
iperf测试工具
查看>>
Java 并发编程基础导航
查看>>