单调栈运用

给定 n 个非负整数,用来表示柱状图中各个柱子的高度。每个柱子彼此相邻,且宽度为 1 。

求在该柱状图中,能够勾勒出来的矩形的最大面积。

示例 1:

输入:heights = [2,1,5,6,2,3]
输出:10
解释:最大的矩形为图中红色区域,面积为 10

 思路

找到该柱子

左边比他小的

右边比他小的

就是他最大面积了

int largestRectangleArea(int* heights, int heightsSize) {
    int s[10000000];
    int tail=0;
    s[0]=0;
    int max=-1;
    for(int i=0;i<heightsSize;i++)
    {
        if(heights[i]>=heights[s[tail]])
        {
            s[++tail]=i;
        }
        else
        {
            while(tail!=-1&&heights[i]<heights[s[tail]])
            {
            if(tail-1==-1)
            {
                   max=fmax(max,i*heights[s[tail]]);
            }
            else
            {
                max=fmax(max,(i-s[tail-1]-1)*heights[s[tail]]);
            }
            tail--;
            }
            s[++tail]=i;
        }
    }
    int i=heightsSize;
    while(tail!=-1)
    {
            if(tail-1==-1)
            {
                   max=fmax(max,i*heights[s[tail]]);
            }
            else
            {
                max=fmax(max,(i-s[tail-1]-1)*heights[s[tail]]);
            }
            tail--;
    }
    return max;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

希小庆

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值