前言
我们社区陆续会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。)的 Swift 算法题题解整理为文字版以方便大家学习与阅读。
LeetCode 算法到目前我们已经更新了 72 期,我们会保持更新时间和进度(周一、周三、周五早上 9:00 发布),每期的内容不多,我们希望大家可以在上班路上阅读,长久积累会有很大提升。
不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。如果大家有建议和意见欢迎在文末留言,我们会尽力满足大家的需求。
难度水平:中等
1. 描述
给定一个 m x n
的矩阵,如果一个元素为 0
,则将其所在行和列的所有元素都设为 0
。请使用 原地 算法。
2. 示例
示例 1
代码语言:javascript复制输入:matrix = [[1,1,1],[1,0,1],[1,1,1]]
输出:[[1,0,1],[0,0,0],[1,0,1]]
示例 2
代码语言:javascript复制输入:matrix = [[0,1,2,0],[3,4,5,2],[1,3,1,5]]
输出:[[0,0,0,0],[0,4,5,0],[0,3,1,0]]
约束条件:
m == matrix.length
n == matrix[0].length
1 <= m, n <= 200
- -2^31 <= matrix[i][j] <= 2^31 - 1`
3. 答案
代码语言:javascript复制class SetMatrixZeroes {
func setZeroes(_ matrix: inout [[Int]]) {
var rowHasZero = false, colHasZero = false
let m = matrix.count, n = matrix[0].count
for i in 0..<m where matrix[i][0] == 0 {
colHasZero = true
break
}
for i in 0..<n where matrix[0][i] == 0 {
rowHasZero = true
break
}
for i in 1..<m {
for j in 1..<n {
if matrix[i][j] == 0 {
matrix[0][j] = 0
matrix[i][0] = 0
}
}
}
for i in 1..<m {
for j in 1..<n {
if matrix[0][j] == 0 || matrix[i][0] == 0 {
matrix[i][j] = 0
}
}
}
if rowHasZero {
for i in 0..<n {
matrix[0][i] = 0
}
}
if colHasZero {
for i in 0..<m {
matrix[i][0] = 0
}
}
}
}
- 主要思想:使用第一行和 col 来跟踪行和 col 是否应该设置为 0,记住它们应该与矩阵的其他部分分开。
- 时间复杂度: O(n^2)
- 空间复杂度: O(1)
该算法题解的仓库:LeetCode-Swift[1]
点击前往 LeetCode[2] 练习
关于我们
Swift社区是由 Swift 爱好者共同维护的公益组织,我们在国内以微信公众号的运营为主,我们会分享以 Swift实战、SwiftUl、Swift基础为核心的技术内容,也整理收集优秀的学习资料。
特别感谢 Swift社区 编辑部的每一位编辑,感谢大家的辛苦付出,为 Swift社区 提供优质内容,为 Swift 语言的发展贡献自己的力量,排名不分先后:张安宇@微软[3]、戴铭@快手[4]、展菲@ESP[5]、倪瑶@Trip.com[6]、杜鑫瑶@新浪[7]、韦弦@Gwell[8]、张浩@讯飞[9]、张星宇@ByteDance[10]、郭英东@便利蜂[11]、何敏[12]、休白[13]、政委[14]
参考资料
[1]
LeetCode-Swift: https://github.com/soapyigu/LeetCode-Swift
[2]
LeetCode: https://leetcode.com/problems/set-matrix-zeroes/
[3]
张安宇: https://blog.csdn.net/mobanchengshuang
[4]
戴铭: https://ming1016.github.io
[5]
展菲: https://github.com/fanbaoying
[6]
倪瑶: https://github.com/niyaoyao
[7]
杜鑫瑶: https://weibo.com/u/3878455011
[8]
韦弦: https://www.jianshu.com/u/855d6ea2b3d1
[9]
张浩: https://github.com/zhanghao19920218
[10]
张星宇: https://github.com/bestswifter
[11]
郭英东: https://github.com/EmingK
[12]
何敏: https://weibo.com/3483803314/profile?rightmod=1&wvr=6&mod=personinfo&is_all=1
[13]
休白: https://github.com/DarkZhao
[14]
政委: https://github.com/zhengweiyyds
- EOF -