代码随想录算法训练营第六十天 | 单调栈 柱状图中最大的矩形 完结撒花

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

柱状图中最大的矩形

  • 双指针解法
  • 本题要记录记录每个柱子 左边第一个小于该柱子的下标,而不是左边第一个小于该柱子的高度。
  • 在寻找的过程中使用了while
class Solution {
    public int largestRectangleArea(int[] heights) {
        int[] minLeftIndex = new int[heights.length];
        int[] minRightIndex = new int[heights.length];

        int length = heights.length;

        // 记录每个柱子,左边第一个小于该柱子的下标
        minLeftIndex[0] = -1; 
        for (int i = 1; i < length; i++) {
            int t = i - 1;
            while (t >= 0 && heights[t] >= heights[i]) {
                t = minLeftIndex[t];
            }
            minLeftIndex[i] = t;
        }

        // 记录每个柱子 右边第一个小于该柱子的坐标
        minRightIndex[length - 1] = length;  // 注意这里初始化,防止下面while死循环
        for (int i = length - 2; i >= 0; i--) {
            int t = i + 1;
            while (t < length && heights[t] >= heights[i]) {
                t = minRightIndex[t];
            }
            minRightIndex[i] = t;
        }

        // 求和
        int result = 0;
        for (int i = 0; i < length; i++) {
            int sum = heights[i] * (minRightIndex[i] - minLeftIndex[i] - 1);
            result = Math.max(sum, result);
        }
        return result;
    }
}
  • 单调栈

在这里插入图片描述

  • 栈顶和栈顶的下一个元素以及要入栈的三个元素组成了我们要求最大面积的高度和宽度
  • 情况一:当前遍历的元素heights[i]大于栈顶元素heights[st.top()]的情况
  • 情况二:当前遍历的元素heights[i]等于栈顶元素heights[st.top()]的情况
  • 情况三:当前遍历的元素heights[i]小于栈顶元素heights[st.top()]的情况
class Solution {
    public int largestRectangleArea(int[] heights) {
        Stack<Integer> st = new Stack<>();

        // 数组扩容,在头尾各加入一个元素
        int[] newHeights = new int[heights.length + 2];
        newHeights[0] = 0;
        newHeights[newHeights.length - 1] = 0;
        for (int index = 0; index < heights.length;index++) {
            newHeights[index + 1] = heights[index];
        }

        heights = newHeights;
        st.push(0);
        int result = 0;
        for (int i = 1; i < heights.length; i++) {
            if (heights[i] > heights[st.peek()]) {
                st.push(i);
            } else if (heights[i] == heights[st.peek()]) {
                st.pop();
                st.push(i);
            } else {
                while (heights[i] < heights[st.peek()]) {
                    int mid = st.peek();
                    st.pop();
                    int left = st.peek();
                    int right = i;
                    int w = right - left - 1;
                    int h = heights[mid];
                    result = Math.max(result, w * h);
                }
                st.push(i);
            }
        }
        return result;
    }
}

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-15 11:22:04       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-15 11:22:04       106 阅读
  3. 在Django里面运行非项目文件

    2024-03-15 11:22:04       87 阅读
  4. Python语言-面向对象

    2024-03-15 11:22:04       96 阅读

热门阅读

  1. C语言实现冒泡排序

    2024-03-15 11:22:04       41 阅读
  2. Qt应用开发(安卓篇)——安卓广播机制

    2024-03-15 11:22:04       43 阅读
  3. docker部署mysql5

    2024-03-15 11:22:04       39 阅读
  4. Python进阶学习(5)反射

    2024-03-15 11:22:04       40 阅读
  5. 举例说明计算机视觉(CV)技术的优势和挑战

    2024-03-15 11:22:04       44 阅读
  6. 三维的旋转平移矩阵形式

    2024-03-15 11:22:04       44 阅读
  7. openGauss 脚本源码浅析(1)—— simpleInstall

    2024-03-15 11:22:04       32 阅读
  8. SpringCloud Stream笔记整理

    2024-03-15 11:22:04       42 阅读
  9. 智障版本GPT3实现

    2024-03-15 11:22:04       45 阅读
  10. 什么是单向数据流

    2024-03-15 11:22:04       38 阅读
  11. 《软件工程》复试问答题总结

    2024-03-15 11:22:04       42 阅读