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

Leetcode: Set Matrix Zeroes

时间:2014-05-23 08:30:28      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

一次过,空间复杂度为O(m+n), 下一次做的时候寻找constant space solution。用boolean array也可以,用bit vector可能会更节省

bubuko.com,布布扣
 1 import java.util.*;
 2 
 3 public class Solution {
 4     public void setZeroes(int[][] matrix) {
 5         HashSet<Integer> rows = new HashSet<Integer>();
 6         HashSet<Integer> columns = new HashSet<Integer>();
 7         
 8         for (int i = 0; i < matrix.length; i++) {
 9             for (int j = 0; j < matrix[0].length; j++) {
10                 if (matrix[i][j] == 0) {
11                     rows.add(i);
12                     columns.add(j);
13                 }
14             }
15         }
16         
17         for (int i = 0; i < matrix.length; i++){
18             for (int j = 0; j < matrix[0].length; j++) {
19                 if (rows.contains(i) || columns.contains(j)) matrix[i][j] = 0;
20             }
21         }
22     }
23 }
bubuko.com,布布扣

 

 

Leetcode: Set Matrix Zeroes,布布扣,bubuko.com

Leetcode: Set Matrix Zeroes

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/EdwardLiu/p/3738085.html

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