[프로그래머스 Lv.3] 알고리즘 고득점 Kit 깊이/너비 우선 탐색(DFS/BFS)- 네트워크

김민지·2024년 3월 17일
0

✨ 정답 ✨

function solution(n, computers) {
    let answer=0;
    let graph=Array.from({length: n}, ()=>new Array());
    for (let i=0;i<n;i++){
        for (let j=0;j<n;j++){
            if (computers[i][j]===1){
                graph[i].push(j);
            }
        }
    }
    console.log(graph)
    
    let visited=new Array(n).fill(false);
    for (let i=0;i<n;i++){
        if (visited[i]===false){
            answer+=1;
        }
        let next=graph[i];
        while(next.length>0){
            let current=next.shift();
            if (visited[current]===false){
                visited[current]=true;
                next=[...next, ...graph[current]]             
            }
        }
    }
    return answer;
}

🧵 참고한 정답지 🧵

💡💡 기억해야 할 점 💡💡

profile
이건 대체 어떻게 만든 거지?

0개의 댓글

관련 채용 정보