矩阵置零
给定一个 m x n 的矩阵,如果一个元素为 0 ,则将其所在行和列的所有元素都设为 0 。请使用 原地 算法。
示例 1:
输入:matrix = [[1,1,1],[1,0,1],[1,1,1]]
输出:[[1,0,1],[0,0,0],[1,0,1]]
1
2
2
/**
* @param {number[][]} matrix
* @return {void} Do not return anything, modify matrix in-place instead.
*/
var setZeroes = function(matrix) {
let map = new Map()
for(let i = 0; i < matrix.length; i++) {
let hasZero = false
for(let j = 0; j < matrix[0].length; j++) {j
if(matrix[i][j] === 0) {
hasZero = true
if(!map.has(j)) map.set(j, j)
}
}
if(hasZero) {
for(let k = 0; k < matrix[0].length; k++) {
matrix[i][k] = 0
}
}
if(map.size === matrix[0].length) break
}
map.forEach(index => {
for(let i = 0; i < matrix.length; i++) {
matrix[i][index] = 0
}
})
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/set-matrix-zeroes/