• 73. Set Matrix Zeroes


    题目:

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

    链接: http://leetcode.com/problems/set-matrix-zeroes/

    题解:

    先判断矩阵第一行和第一列是否需要清零,然后再扫描矩阵把需要清零的行和列标注在第一行和第一列里, 最后进行清零操作。

    Time Complexity - O(m x n), Space Complexity - O(1)。

    public class Solution {
        public void setZeroes(int[][] matrix) {
            if(matrix == null || matrix[0].length == 0)
                return;
            int m = matrix.length, n = matrix[0].length;    
            Boolean firstRowZero = false, firstColZero = false;
            
            for(int i = 0; i < m; i ++){
                if(matrix[i][0] == 0){
                    firstColZero = true;
                    break;
                }
            }
            
            for(int j = 0; j < n; j ++){
                if(matrix[0][j] == 0){
                    firstRowZero = true;
                    break;
                }
            }
            
            for(int i = 1; i < m; i ++){
                for(int j = 1; j < n; j++){
                    if(matrix[i][j] == 0){
                        matrix[i][0] = 0;
                        matrix[0][j] = 0;
                    }
                }
            }
            
            for(int i = 1; i < m; i ++){
                for(int j = 1; j < n; j ++){
                    if(matrix[i][0] == 0 || matrix[0][j] == 0)
                        matrix[i][j] = 0;
                }
            }
            
            if(firstRowZero == true)
                for(int j = 0; j < n; j ++)
                    matrix[0][j] = 0;
            
            if(firstColZero == true)
                for(int i = 0; i < m; i ++)
                    matrix[i][0] = 0;
        }
    }

    Update:

    public class Solution {
        public void setZeroes(int[][] matrix) {
            if(matrix == null || matrix.length == 0)
                return;
            boolean isZeroInFirstRow = false, isZeroInFirstCol = false;
            
            for(int i = 0; i < matrix.length; i++)
                if(matrix[i][0] == 0) {
                    isZeroInFirstCol = true;
                    break;
                }
            
            for(int j = 0; j < matrix[0].length; j++)
                if(matrix[0][j] == 0) {
                    isZeroInFirstRow = true;
                    break;
                }
            
            for(int i = 1; i < matrix.length; i++) {
                for(int j = 1; j < matrix[0].length; j++) {
                    if(matrix[i][j] == 0) {
                        matrix[i][0] = 0;
                        matrix[0][j] = 0;
                    }
                        
                }
            }
                    
            for(int i = 1; i < matrix.length; i++) {
                for(int j = 1; j < matrix[0].length; j++) {
                    if(matrix[i][0] == 0 || matrix[0][j] == 0)
                        matrix[i][j] = 0;
                }
            }
            
            if(isZeroInFirstCol)
                for(int i = 0; i < matrix.length; i++)
                    matrix[i][0] = 0;
            
            if(isZeroInFirstRow) {
                for(int j = 0; j < matrix[0].length; j++)
                    matrix[0][j] = 0;
            }
        }
    }

    二刷:

    题目不难但是打字比较费力。

    Java:

    Time Complexity - O(mn), Space Complexity - O(1)

    public class Solution {
        public void setZeroes(int[][] matrix) {
            if (matrix == null || matrix.length == 0) {
                return;
            }
            boolean hasZeroFirstRow = false, hasZeroFirstCol = false;
            for (int i = 0; i < matrix.length; i++) {
                if (matrix[i][0] == 0) {
                    hasZeroFirstCol = true;
                    break;
                }
            }
            for (int j = 0; j < matrix[0].length; j++) {
                if (matrix[0][j] == 0) {
                    hasZeroFirstRow = true;
                    break;
                }
            }
            for (int i = 1; i < matrix.length; i++) {
                for (int j = 1; j < matrix[0].length; j++) {
                    if (matrix[i][j] == 0) {
                        matrix[i][0] = 0;
                        matrix[0][j] = 0;
                    }
                }
            }
            for (int i = 1; i < matrix.length; i++) {
                for (int j = 1; j < matrix[0].length; j++) {
                    if (matrix[i][0] == 0 || matrix[0][j] == 0) {
                        matrix[i][j] = 0;
                    }
                }
            }
            if (hasZeroFirstRow) {
                for (int j = 0; j < matrix[0].length; j++) {
                    matrix[0][j] = 0;
                }
            }
            if (hasZeroFirstCol) {
                for (int i = 0; i < matrix.length; i++) {
                    matrix[i][0] = 0;
                }
            }
        }
    }

    三刷:

    Java:

    public class Solution {
        public void setZeroes(int[][] matrix) {
            if (matrix == null || matrix.length == 0) return;
            boolean hasZeroFirstRow = false, hasZeroFirstCol = false;
            for (int i = 0; i < matrix.length; i++) {
                if (matrix[i][0] == 0) {
                    hasZeroFirstCol = true;
                    break;
                }
            }
            
            for (int j = 0; j < matrix[0].length; j++) {
                if (matrix[0][j] == 0) {
                    hasZeroFirstRow = true;
                    break;
                }
            }
            
            for (int i = 1; i < matrix.length; i++) {
                for (int j = 1; j < matrix[0].length; j++) {
                    if (matrix[i][j] == 0) {
                        matrix[i][0] = 0;
                        matrix[0][j] = 0;
                    }
                }
            }
            
            for (int i = 1; i < matrix.length; i++) {
                for (int j = 1; j < matrix[0].length; j++) {
                    if (matrix[i][0] == 0 || matrix[0][j] == 0) {
                        matrix[i][j] = 0;
                    }
                }
            }
            
            if (hasZeroFirstRow) {
                for (int j = 0; j < matrix[0].length; j++) matrix[0][j] = 0;
            }
            if (hasZeroFirstCol) {
                for (int i = 0; i < matrix.length; i++) matrix[i][0] = 0;
            }
        }
    }

    测试:

  • 相关阅读:
    Zabbix监控系统详解:系统功能介绍
    Zabbix监控系统详解:ubuntu系统下软件的安装
    计算机数学基础:第二章 极限
    计算机数学基础:第一章 函数
    net 架构师-数据库-sql server-003-T-SQL 基本语句
    net 架构师-数据库-sql server-002-工具
    net 架构师-数据库-sql server-001-SQL Server中的对象
    net 架构师-数据库-sql server-触发器
    c# 设计模式
    CSS盒模型(1)——基本概念
  • 原文地址:https://www.cnblogs.com/yrbbest/p/4437115.html
Copyright © 2020-2023  润新知