Skip to content

Commit

Permalink
Section7-12. 그래프 최단거리 (BFS)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyuseon25 committed Feb 3, 2025
1 parent e65a7ae commit a49509f
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions Section07/그래프_최단거리_BFS.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
package 인프런.Section07;

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class 그래프_최단거리_BFS {
static int n, m;
static ArrayList<ArrayList<Integer>> graph;
static int[] ch, dis;

public void BFS(int v) {
Queue<Integer> q = new LinkedList<>();
ch[v] = 1;
dis[v] = 0;
q.offer(v);

while(!q.isEmpty()) {
int cv = q.poll();
for(int nv : graph.get(cv)) {
if(ch[nv] == 0) { //방문 유무
ch[nv] = 1;
q.offer(nv);
dis[nv] = dis[cv] + 1;
}
}
}
}

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);

그래프_최단거리_BFS t = new 그래프_최단거리_BFS();

n = scanner.nextInt();
m = scanner.nextInt();

graph = new ArrayList<>();
for(int i = 0; i <= n; i++ ){
graph.add(new ArrayList<>());
}

ch = new int[n+1];
dis = new int[n+1];

for(int i = 0; i < m; i++) {
int a = scanner.nextInt();
int b = scanner.nextInt();
graph.get(a).add(b);
}

t.BFS(1);

for(int i = 2; i <= n; i++) {
System.out.println(i + " : " + dis[i]);
}
}
}

0 comments on commit a49509f

Please sign in to comment.