矩阵置零

Posted zhenjianyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了矩阵置零相关的知识,希望对你有一定的参考价值。

给定一个 m x n 的矩阵,如果一个元素为 0,则将其所在行和列的所有元素都设为 0。请使用原地算法。

function setZeroes(matrix) {
    let x = [],y = []
    for(let i = 0;i < matrix.length;i++){
        let item = matrix[i]
        for(let j = 0;j < item.length;j++){
            let jItem = item[j]
            if(jItem == 0){
                x.push(i)
                y.push(j)
            }
        }
    }
    for(let i = 0;i < matrix.length;i++){
        let item = matrix[i]
        for(let j = 0;j < item.length;j++){
            let jItem = item[j]
            if(jItem != 0 && (x.includes(i) || y.includes(j))){
                item.splice(j,1,0)
            }
        }
    }
    return matrix
}

没明白什么是原地算法,Leecode提交通过

 

以上是关于矩阵置零的主要内容,如果未能解决你的问题,请参考以下文章

p99 矩阵置零(leetcode 73)

《LeetCode之每日一题》:280.矩阵置零

矩阵置零

LeetCode:矩阵置零73

Leetcode——矩阵置零

矩阵置零