Description
Given a m x n matrix, if an element is
0
, set its entire row and column to 0. Do it in-place.
Example 1:
1 2 3 4 5 6 7 8 9 10 11 12
Input: [ [1,1,1], [1,0,1], [1,1,1] ] Output: [ [1,0,1], [0,0,0], [1,0,1] ]
Example 2:
1 2 3 4 5 6 7 8 9 10 11 12
Input: [ [0,1,2,0], [3,4,5,2], [1,3,1,5] ] Output: [ [0,0,0,0], [0,4,5,0], [0,3,1,0] ]
Follow up:
- A straight forward solution using O(mn) 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?
在m x n
的矩阵中,如果一个元素为0
,则将它所在的行和列都置为0
。
Solution
要解决只使用O(1)
空间问题,根据提示可以使用第一行和第一列暂存标记,最后再将对应的行和列置 0。
但是需要处理第一行和第一列本身需要置 0 的情况,第一行和第一列的标记需要另外存放。
|
|