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

Set Matrix Zeroes

时间:2014-06-30 06:17:09      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:java   leetcode   数组   

题目

Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.

Follow up:

Did you use extra space?
A straight forward solution using O(mn) space is probably a bad idea.
A simple improvement uses O(m + n) space, but still not the best solution.
Could you devise a constant space solution?

方法

空间复杂度要求为O(1),肯定需要考虑如何使用数组本身,使用数组的第一行和第一列作为标记。
    public void setZeroes(int[][] matrix) {
        if (!(matrix == null || matrix.length == 0 || matrix[0].length == 0)) {
            int lenI = matrix.length;
            int lenJ = matrix[0].length;
            boolean rowFirst = false;
            boolean colFirst = false;
            for (int i = 0; i < lenI; i++) {
                if (matrix[i][0] == 0) {
                    colFirst = true;
                    break;
                }
            }
            
            for (int j = 0; j < lenJ; j++) {
                if (matrix[0][j] == 0) {
                    rowFirst = true;
                    break;
                }
            }
            
            for (int i = 0; i < lenI; i++) {
                for (int j = 0; j < lenJ; j++) {
                    if (matrix[i][j] == 0) {
                        matrix[i][0] = 0;
                        matrix[0][j] = 0;
                    }
                }
            }
            for (int i = 1; i < lenI; i++) {
                if (matrix[i][0] == 0) {
                    for (int j = 1; j < lenJ; j++) {
                        matrix[i][j] = 0;
                    }
                }
            }
            
            for (int j = 1; j < lenJ; j++) {
                if (matrix[0][j] == 0) {
                    for (int i = 1; i < lenI; i++) {
                        matrix[i][j] = 0;
                    }
                }
            }
            
            if (rowFirst) {
                for (int j = 0; j < lenJ; j++) {
                    matrix[0][j] = 0;
                }
            }
            
            if (colFirst) {
                for (int i = 0; i < lenI; i++) {
                    matrix[i][0] = 0;
                }
            }
        }
    }


Set Matrix Zeroes,布布扣,bubuko.com

Set Matrix Zeroes

标签:java   leetcode   数组   

原文地址:http://blog.csdn.net/u010378705/article/details/35568065

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