Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
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?
CC上题目1.7
用两个array 来记录, 这种方法 space complexity is o(m+n), 第二种方法实现了 o(1)的space complexity
本文详细介绍了两种方法实现矩阵中元素置零的常空间复杂度解决方案,包括利用矩阵自身的首行和首列进行记录的方法,以及使用额外数组记录的方法。文章深入探讨了每种方法的原理、实现细节及其效率对比。
425

被折叠的 条评论
为什么被折叠?



