leetcode 84. 柱状图中最大的矩形

2023.8.30

leetcode 84. 柱状图中最大的矩形_第1张图片

         本题和接雨水 有点类似,依旧用双指针来解。但是本题要记录的是当前柱子 左右两侧第一个小于该柱子的索引。将其保存在两个数组中,最后再求最大面积。代码如下:

class Solution {
public:
    int largestRectangleArea(vector& heights) {
        vector min_left_index(heights.size()); //记录当前柱子 左侧第一个小于该柱子的索引
        vector min_right_index(heights.size()); //记录当前柱子 右侧第一个小于该柱子的索引

        min_left_index[0] = -1;
        for(int i=1; i=0 && heights[temp]>=heights[i]) 
             {
                 temp = min_left_index[temp];
             }
             min_left_index[i] = temp;
        }

        min_right_index[heights.size()-1] = heights.size();
        for(int i=heights.size()-2; i>=0; i--)
        {
            int temp = i+1;
            while(temp<=heights.size()-1 && heights[temp]>=heights[i])
            {
                temp = min_right_index[temp];
            }
            min_right_index[i] = temp;
        }
        //求最大面积
        int ans = 0;
        for(int i=0; i

        

你可能感兴趣的:(leetcode专栏,leetcode,算法,职场和发展,数据结构,cpp)