题目大意
https://leetcode.com/problems/maximal-rectangle/
给你一个01字符矩阵,求最大的只含字符1的矩形面积。
题目分析
此题可以直接转化成 https://leetcode.com/problems/largest-rectangle-in-histogram ,可以分别把矩形的第0行….第row-1行看做直方图的底,分别调用求直方图最大矩形面积的程序。
代码
|
|
复杂度:O(m * n)
https://leetcode.com/problems/maximal-rectangle/
给你一个01字符矩阵,求最大的只含字符1的矩形面积。
此题可以直接转化成 https://leetcode.com/problems/largest-rectangle-in-histogram ,可以分别把矩形的第0行….第row-1行看做直方图的底,分别调用求直方图最大矩形面积的程序。
|
|
复杂度:O(m * n)