题目描述
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(m n) 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(mn),空间复杂度O(1)
//利用第一行和第一列的空间做记录
class Solution {
public:
void setZeroes(vector<vector<int> > &matrix) {
int m=matrix.size();
int n=matrix[0].size();
bool row0=false,col0=false;
//判断第一行和第一列是否有零,防止被覆盖
for(int i=0;i<m;++i)
if(matrix[i][0]==0)
{
row0=true;
break;
}
for(int i=0;i<n;++i)
if(matrix[0][i]==0)
{
col0=true;
break;
}
//遍历矩阵,用第一行和第一列记录0的位置
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(row0)
for(int i=0;i<m;++i)
matrix[i][0]=0;
if(col0)
for(int i=0;i<n;++i)
matrix[0][i]=0;
return ;
}
};