LeetCode 73. Set Matrix Zeroes
Posted 約束の空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 73. Set Matrix Zeroes相关的知识,希望对你有一定的参考价值。
利用matrix的第一行和第一列来记录,第二遍扫描时再根据记录的信息把matrix的元素置0。
class Solution { public: void setZeroes(vector<vector<int>>& matrix) { int m=matrix.size(), n=m==0?0:matrix[0].size(); bool clear_first_row=false; bool clear_first_col=false; // use the first row and the first col to record for (int i=0;i<m;++i){ for (int j=0;j<n;++j){ if (matrix[i][j]==0){ if (i==0) clear_first_row=true; if (j==0) clear_first_col=true; matrix[0][j] = 0; matrix[i][0] = 0; } } } for (int i=1;i<m;++i){ for (int j=1;j<n;++j){ if (matrix[0][j]==0 || matrix[i][0]==0) matrix[i][j] = 0; } } if (clear_first_row){ for (int j=0;j<n;++j) matrix[0][j] = 0; } if (clear_first_col){ for (int i=0;i<m;++i) matrix[i][0] = 0; } } };
以上是关于LeetCode 73. Set Matrix Zeroes的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 73. Set Matrix Zeroes
[leetcode]73.Set Matrix Zeroes
Leetcode 73: Set Matrix Zeroes
[leetcode][73] Set Matrix Zeroes