LeetCode: Set Matrix Zeroes 解题报告
Set Matrix Zeroes
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
click to show follow up.
Follow up:
Did you use extra space?
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?

SOLUTION 1:
题目要求O(1)的空间消耗。
1. 我们可以使用第一行,第一列来作为Flag,记录某一行,某一列是否应该被设置为0.
2. 因为第一行,第一列共用左上角的flag,所以我们需要另外找2个flag来定义第一行,第一列本身是否应该设置为0.
row1Zero, col1Zero
3. 先扫描首行,首列把首行首列的flag算出。
4. 扫描其他的矩阵,将第一行每一列的flag算出。
5. 设置矩阵中除了首行首列的cells.
6. 设置首行,设置首列。
public class Solution {
public void setZeroes(int[][] matrix) {
if (matrix == null || matrix.length ==
|| matrix[].length == ) {
return;
}
boolean row1Zero = false;
boolean col1Zero = false;
int rows = matrix.length;
int cols = matrix[].length;
// Determine if the first column should be Zero.
for (int i = ; i < rows; i++) {
if (matrix[i][] == ) {
col1Zero = true;
break;
}
}
// Determine if the first row should be Zero.
for (int i = ; i < cols; i++) {
if (matrix[][i] == ) {
row1Zero = true;
break;
}
}
// we use the first row and the first col as the flag to record the
// cells whether or not set to 0.
for (int i = ; i < rows; i++) {
for (int j = ; j < cols; j++) {
// 注意了,这个矩阵是0和非0,并不是0和1.
if (matrix[i][j] == ) {
// set the flag in the first line and the first column
matrix[i][] = ;
matrix[][j] = ;
}
}
}
// set the inner cells.
// Be careful: i, j start from 1.
for (int i = ; i < rows; i++) {
for (int j = ; j < cols; j++) {
if (matrix[i][] ==
|| matrix[][j] == ) {
matrix[i][j] = ;
}
}
}
// set the first row.
if (row1Zero) {
for (int i = ; i < cols; i++) {
matrix[][i] = ;
}
}
// set the first col.
if (col1Zero) {
for (int i = ; i < rows; i++) {
matrix[i][] = ;
}
}
return;
}
}
2014.1230 redo:
把前面三个循环合并,会简单一点儿。
public class Solution {
public void setZeroes(int[][] matrix) {
if (matrix == null || matrix.length == 0 || matrix[0].length == 0) {
return;
}
boolean row1 = false;
boolean col1 = false;
int rows = matrix.length;
int cols = matrix[0].length;
// set flags.
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
if (matrix[i][j] != 0) {
continue;
}
// set the flag of a column and a row.
matrix[0][j] = 0;
matrix[i][0] = 0;
// get flag of first row.
if (i == 0) {
row1 = true;
}
// get flag of first column.
if (j == 0) {
col1 = true;
}
}
}
// set the matrix.
for (int i = 1; i < rows; i++) {
for (int j = 1; j < cols; j++) {
if (matrix[0][j] == 0 || matrix[i][0] == 0) {
matrix[i][j] = 0;
}
}
}
// set first column
if (col1) {
for (int i = 0; i < rows; i++) {
// bug 1: can't use matrix[i][j]
matrix[i][0] = 0;
}
}
// set first row.
if (row1) {
for (int i = 0; i < cols; i++) {
matrix[0][i] = 0;
}
}
}
}
GitHub Code:
LeetCode: Set Matrix Zeroes 解题报告的更多相关文章
- LeetCode: Spiral Matrix II 解题报告-三种方法解决旋转矩阵问题
Spiral Matrix IIGiven an integer n, generate a square matrix filled with elements from 1 to n2 in sp ...
- 【LeetCode】73. Set Matrix Zeroes 解题报告(Python & C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 原地操作 新建数组 队列 日期 题目地址:https ...
- 【LeetCode】Set Matrix Zeroes 解题报告
今天看到CSDN博客的勋章换了图表,同一时候也添加显示了博客等级,看起来都听清新的,感觉不错! [题目] Given a m x n matrix, if an element is 0, set i ...
- LeetCode 283 Move Zeroes 解题报告
题目要求 Given an array nums, write a function to move all 0's to the end of it while maintaining the re ...
- 【LeetCode】474. Ones and Zeroes 解题报告(Python)
[LeetCode]474. Ones and Zeroes 解题报告(Python) 作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ ...
- LeetCode 1 Two Sum 解题报告
LeetCode 1 Two Sum 解题报告 偶然间听见leetcode这个平台,这里面题量也不是很多200多题,打算平时有空在研究生期间就刷完,跟跟多的练习算法的人进行交流思想,一定的ACM算法积 ...
- 【LeetCode】Permutations II 解题报告
[题目] Given a collection of numbers that might contain duplicates, return all possible unique permuta ...
- 【LeetCode】Island Perimeter 解题报告
[LeetCode]Island Perimeter 解题报告 [LeetCode] https://leetcode.com/problems/island-perimeter/ Total Acc ...
- 【LeetCode】Largest Number 解题报告
[LeetCode]Largest Number 解题报告 标签(空格分隔): LeetCode 题目地址:https://leetcode.com/problems/largest-number/# ...
随机推荐
- plsql 表数据中文显示乱码(配置环境变量)
plsql 表数据中文显示乱码(配置环境变量) CreateTime--2018年4月23日19:32:37 Author:Marydon 1.情景再现 2.解决方案 配置环境变量 变量名:NLS ...
- poj 2226 二分图 最小点覆盖 , 最大流
题目就是问怎样用最小的板覆盖全部的草地.能够横着放.也能够竖着放,同意一个草地放多个点. 建图方法就是 每一个横向的草地作为X,纵向连续的草地作为Y. X连接Y的边表示, 这里有他们的公共点 ...
- Centos6.5生产环境最小化优化配置
Centos6.5生产环境最小化优化配置,满足业务需求! 01.启动网卡 #centos6.x最小化安装后,网卡默认不是启动状态 ifup eth0 // ifconfig eth0 up /et ...
- android.intent.action.MAIN, android.intent.category.LAUNCHER
android.intent.action.MAIN决定应用程序最先启动的Activity android.intent.category.LAUNCHER决定应用程序是否显示在程序列表里
- HDUOJ--1058HangOver
HangOver Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Su ...
- HDUOJ-----2175取(m堆)石子游戏
取(m堆)石子游戏 Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total S ...
- HDUOJ----2512一卡通大冒险
一卡通大冒险 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Subm ...
- Windows下面安装和配置Solr 4.9(二)
将Solr和Tomcat结合: 1.在D盘下创建目录 D:\Demos\Solr 2.解压solr-4.9.0文件,我这里下载的是这个4.9版本,将example文件夹下的solr文件夹中的所有文件( ...
- Linux进程概述
一.介绍 当linux系统中的一个进程运行起来的时候,总是要访问系统的资源,访问文件或者向其他的进程发送信号.系统是否允许其进行这些操作?系统是根据什么来判断该进程的权限?这些问题是和进程信任状(pr ...
- DCDC纹波小实验
关于使用示波器測试纹波的注意事项 使用示波器的AC耦合方式測量 因为示波器的头套easy引人噪声,因此在測试前必需把探头的头套去掉 因为电源的高频噪声非常easy通过小电感就能够滤掉,因此更关心的是中 ...