본문 바로가기
Algorithm(알고리즘)/Java

[Java] [백준 1260][완전탐색,LinkedList] DFS와 BFS

by Jun_N 2021. 3. 16.

문제

그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.

입력

첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.

출력

첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.


 

package com.Boj;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;

public class BOJ_S2_1260_DFS와BFS {
	
	static class Node implements Comparable<Node>{
		int v;

		public Node(int v) {
			super();
			this.v = v;
		}

		@Override
		public int compareTo(Node o) {
			return this.v-o.v;
		}
		
	}
	
	static int N,M,V;
	static int from,to;
	static LinkedList<Node>[] adjList;
	static boolean[] visit;
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st = new StringTokenizer(br.readLine()," ");
		N=Integer.parseInt(st.nextToken());
		M=Integer.parseInt(st.nextToken());
		V=Integer.parseInt(st.nextToken());
		
		adjList=new LinkedList[N+1];
		
		for(int i=0;i<N+1;i++)
			adjList[i]=new LinkedList<Node>();
		
		
		for(int i=0;i<M;i++) {
			st=new StringTokenizer(br.readLine()," ");
			from=Integer.parseInt(st.nextToken());
			to=Integer.parseInt(st.nextToken());
			adjList[from].add(new Node(to));
			adjList[to].add(new Node(from));
		}
		for(int i=0;i<N;i++)
			Collections.sort(adjList[i]);
		
		visit=new boolean[N+1];
		dfs(V);
		System.out.println();
		
		visit=new boolean[N+1];
		bfs(V);
		
	}
	
	private static void bfs(int cur) {
		Queue<Integer> q = new LinkedList<Integer>();
		visit[cur]=true;
		
		q.add(cur);
		
		while(!q.isEmpty()) {
			cur=q.poll();
			System.out.print(cur+" ");
			
			for(Node tmp: adjList[cur]) {
				if(!visit[tmp.v]) {
					q.add(tmp.v);
					visit[tmp.v]=true;
				}
			}
			
		}
		
	}

	private static void dfs(int cur) {
		
		visit[cur]=true;
		System.out.print(cur+" ");
		for(Node tmp: adjList[cur]) {
			if(!visit[tmp.v])
				dfs(tmp.v);
		}
		
	}

}