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

二维矩阵置零

时间:2016-08-15 14:25:51      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

一个二维矩阵,如果矩阵有元素为0,就把对应的行和列上面的元素都置为0。

class Solution {
public:
    void setZeroes(vector<vector<int> > &matrix) {
        int m = matrix.size();
        int n = matrix[0].size();
        vector<bool>rowRecord(m);
        vector<bool>colRecord(n);
        for(int i = 0; i<m;i++)
         {
            for(int j = 0;j<n;j++)
                {
                if(matrix[i][j]==0)
                    {
                    rowRecord[i]= true;
                    colRecord[j] = true;
                }
            }
        }
        for(int i = 0;i<m;i++)
            {
            for(int j =0;j<n;j++)
                {
                if(rowRecord[i]==true)
                    matrix[i][j]=0;
                else if(colRecord[j]==true)
                    matrix[i][j]=0;
            }
        }
    }
};

  

二维矩阵置零

标签:

原文地址:http://www.cnblogs.com/LaplaceAkuir/p/5772714.html

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