码迷,mamicode.com
首页 > 其他好文 > 详细

85. Maximal Rectangle

时间:2016-05-15 09:41:13      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

    /*
     * 85. Maximal Rectangle
     * 12.20 by Mingyang 
     * 这里运用了上次做的 84.Largest Rectangle in
     * Histogram一模一样的题目,这样的话后面的function就不用改了,我们再一层一层的切割,每切一次就是一次新的Histogram题目
     * 我们只需要看新加进来的行(底面)上对应的列元素是不是0,如果是,则高度是0,否则则是上一行直方图的高度加1。
     */
    public int maximalRectangle(char[][] matrix) {
        if (matrix == null || matrix.length == 0 || matrix[0].length == 0) {
            return 0;
        }
        int maxArea = 0;
        int[] height = new int[matrix[0].length];
        for (int i = 0; i < matrix.length; i++) {
            for (int j = 0; j < matrix[0].length; j++) {
                height[j] = matrix[i][j] == ‘0‘ ? 0 : height[j] + 1;
            }
            maxArea = Math.max(largestRectangleArea(height), maxArea);
        }
        return maxArea;
    }

 

85. Maximal Rectangle

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5494595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!