首页 > 其他 > 详细

84 柱状图中的最大矩形 单调栈

时间:2021-08-08 22:53:20      阅读:16      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 也可以暴力 每个位置中心扩展

class Solution {
public:
    int largestRectangleArea(vector<int>& heights) {
    heights.push_back(-1);//同理,我们希望栈中所有数据出栈,所以给数组最后添加一个负数
    stack<int> st;
    int ret = 0, top;
    for (int i = 0; i < heights.size(); i++)
    {
        if (st.empty() || heights[st.top()] <= heights[i])
        {
            st.push(i);
        }
        else
        {
            while (!st.empty() && heights[st.top()] > heights[i])
            {
                top = st.top();
                st.pop();
                //i-top指的是当前矩形的宽度,heights[top]就是当前的高度
                //再次强调栈中现在为单调递增
                int tmp = (i - top)*heights[top];
                if (tmp > ret)
                    ret = tmp;
            }
            st.push(top);
            heights[top] = heights[i];
        }
    }
    return ret;
}

};

 

84 柱状图中的最大矩形 单调栈

原文:https://www.cnblogs.com/libin123/p/15115892.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!