문제
그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.
입력
첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.
출력
첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.
코드
import java.util.*;
public class DFS_BFS_2 {
static int n;
static int m;
static int start;
static int[][] check;
static boolean[] checked;
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
m = sc.nextInt();
start = sc.nextInt();
check = new int[1001][1001]; // 정점의 max개수 1000개, 좌표 그대로 받아들이기 위해 +1 해줌.
checked = new boolean[1001]; // 초기값 모두 false;
// 간선 연결상태 저장
for(int i = 0; i < m; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
check[x][y] = check[y][x] = 1;
}
// DFS (깊이 우선 탐색)
dfs(start);
checked = new boolean[1001]; // 확인상태 초기화 필요
System.out.println(); // 줄 바꿈
// BFS (넓이 우선 탐색)
bfs();
}
public static void dfs(int i) { // dfs는 가급적 recursion을 사용하기
checked[i] = true;
System.out.print(i + " ");
for(int j = 0; j <= n; j++) {
if(check[i][j] == 1 && checked[j] == false) {
dfs(j);
}
}
}
public static void bfs() { // 확인상태 초기화 안 해줘서 bfs는 나오다가 만 것임!
Queue<Integer> queue = new LinkedList<>();
queue.add(start);
checked[start] = true;
System.out.print(start + " ");
while(!queue.isEmpty()) {
int r = queue.remove();
for (int k = 1; k <= n; k++) {
if (check[r][k] == 1 && checked[k] == false) {
queue.add(k);
checked[k] = true;
System.out.print(k + " ");
}
}
}
}
}
에러
1. 값 출력시 bfs는 값이 출력되다가 말았음 -> 확인상태를 초기화 하지 않아서 생긴 문제.
1 2 4 3
1
2. Cannot find symbol
util.Queue가 아니라 내가 오버라이딩한 Queue의 메서드를 사용해서 생긴 문제. util.Queue의 메서드를 사용하니 문제 해결,.
3. error: class 클래스명 is public, should be declared in a file named 클래스명.java
백준 사이트에서는 Java로 제출할 때 클래스명을 Main으로 지정해줘야 함.
참고사이트 :
https://m.blog.naver.com/lm040466/221787478911
https://yangbox.tistory.com/60
https://crazykim2.tistory.com/404