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

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

has a very neat code, which is rewritten below using stack since the push and pop operations of it are O(1) time, while the pop_back and push_back of vector tend to be more time-consuming. This is also verified by the running time of the code on the OJ: stack version is generally 4ms to 8ms faster than vector version.

1 class Solution { 2 public: 3     int largestRectangleArea(vector
& height) { 4 height.push_back(0); 5 int n = height.size(), area = 0; 6 stack
indexes; 7 for (int i = 0; i < n; i++) { 8 while (!indexes.empty() && height[indexes.top()] > height[i]) { 9 int h = height[indexes.top()]; indexes.pop();10 int l = indexes.empty() ? -1 : indexes.top();11 area = max(area, h * (i - l - 1));12 }13 indexes.push(i);14 }15 return area; 16 }17 };

Moreover, it would be better to keep height unmodified. So we loop for n + 1 times and manually set the h = 0 when i == n. The code is as follows.

1 class Solution { 2 public: 3     int largestRectangleArea(vector
& height) { 4 int n = height.size(), area = 0, h, l; 5 stack
indexes; 6 for (int i = 0; i <= n; i++) { 7 while (i == n || (!indexes.empty() && height[indexes.top()] > height[i])) { 8 if (i == n && indexes.empty()) h = 0, i++; 9 else h = height[indexes.top()], indexes.pop(); 10 l = indexes.empty() ? -1 : indexes.top();11 area = max(area, h * (i - l - 1));12 }13 indexes.push(i);14 }15 return area;16 }17 };

 

转载地址:http://qrexa.baihongyu.com/

你可能感兴趣的文章
大厂前端高频面试问题与答案精选
查看>>
我们用5分钟写了一个跨多端项目
查看>>
Visual Studio 15.4发布,新增多平台支持
查看>>
有赞透明多级缓存解决方案(TMC)设计思路
查看>>
如何设计高扩展的在线网页制作平台
查看>>
Git 2.5增加了工作树、改进了三角工作流、性能等诸多方面
查看>>
Swift 5将强制执行内存独占访问
查看>>
中台之上(二):为什么业务架构存在20多年,技术人员还觉得它有点虚?
查看>>
深度揭秘腾讯云低功耗广域物联网LPWAN 技术及应用
查看>>
与Jeff Sutherland谈敏捷领导力
查看>>
More than React(四)HTML也可以静态编译?
查看>>
React Native最佳学习模版- F8 App开源了
查看>>
云服务正在吞噬世界!
查看>>
阅读Android源码的一些姿势
查看>>
Web语义化标准解读
查看>>
一份代码构建移动、桌面、Web全平台应用
查看>>
高性能 Lua 技巧(译)
查看>>
区分指针、变量名、指针所指向的内存
查看>>
异步编程的世界
查看>>
最近话题火爆的四件事你知道不?
查看>>