LeetCode Solution-73

Posted littledy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Solution-73相关的知识,希望对你有一定的参考价值。

73. Set Matrix Zeroes

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

Example 1:

Input: 
[
  [1,1,1],
  [1,0,1],
  [1,1,1]
]
Output: 
[
  [1,0,1],
  [0,0,0],
  [1,0,1]
]

Example 2:

Input: 
[
  [0,1,2,0],
  [3,4,5,2],
  [1,3,1,5]
]
Output: 
[
  [0,0,0,0],
  [0,4,5,0],
  [0,3,1,0]
]

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

思路:
1.若某一个数为0,则将这一行的第一个数以及这一列的第一个数设为0作为标记位。值得注意的是,如果第一列某个数为0,则这一行和第一列的数都要变为0,所以要单独设置一个标志位col0。
2.检查行时自底向上,检查列时自右向左。注意检查列时只能检查到第二列,否则会重复变0。最后检查col0是否为0,若为0,则将第一列变为0。

Solution:

void setZeroes(vector<vector<int>>& matrix) {
    int col0 = 1, rows = matrix.size(), cols = matrix[0].size();
        
    for (int i = 0; i < rows; i++) {
        if (matrix[i][0] == 0) col0 = 0;
        for (int j = 1; j < cols; j++) {
            if (matrix[i][j] == 0 )    
                matrix[i][0] = matrix[0][j] = 0;
        }
    }

    for (int i = rows-1; i >= 0; i--) {
        for (int j = cols-1; j >= 1; j--) {
            if (matrix[i][0] == 0 || matrix[0][j] == 0)
                matrix[i][j] = 0;
        }
    }
        
    if (col0 == 0) {
        for (int i = 0; i < rows; i++) {
            matrix[i][0] = 0;
        }
    } 
}

性能:
Runtime: 44 ms??Memory Usage: 11.5 MB

以上是关于LeetCode Solution-73的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode.1024 视频拼接

LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段

LEETCODE 003 找出一个字符串中最长的无重复片段

Leetcode 763 划分字母区间

LeetCode:划分字母区间763

Leetcode:Task Scheduler分析和实现