티스토리 뷰
728x90
반응형
문제 링크
문제 풀이
DFS와 BFS를 공부하기 위해서 꼭 한번 풀어볼 만한 기본적인 문제이다.
소스 코드
import java.util.LinkedList;
import java.util.Scanner;
class Graph{
int V;
public LinkedList<Integer> adj [] ; //
public Graph(int v) {
V = v;
adj = new LinkedList [v+1];
for (int i = 0; i < v+1; i++) {
adj[i] = new LinkedList<>();
}
}
void add(int v ,int w) {
adj[v].add(w);
adj[w].add(v);
}
void dfs(int v, boolean [] isVisited) {
isVisited[v] = true;
System.out.print(v+" ");
for (int i = 0; i < adj[v].size(); i++) {
int w = adj[v].get(i);
if(!isVisited[w]) {
dfs(w, isVisited);
}
}
}
void bfs(int v) {
boolean[] isVisited = new boolean[V+1];
LinkedList<Integer> que = new LinkedList<>();
que.add(v);
isVisited[v] = true;
while(!que.isEmpty()) {
int w = que.poll();
System.out.print(w+" ");
for (int i = 0; i < adj[w].size(); i++) {
int x = adj[w].get(i);
if(!isVisited[x]) {
isVisited[x] = true;
que.add(x);
}
}
}
}
}
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N= sc.nextInt();
int M = sc.nextInt();
int V = sc.nextInt();
Graph gr = new Graph(N);
for (int i = 0; i < M; i++) {
gr.add(sc.nextInt(), sc.nextInt());
}
for (LinkedList list : gr.adj) {
list.sort(null);
}
gr.dfs(V, new boolean[N+1]);
System.out.println();
gr.bfs(V);
}
}
728x90
반응형
'Problem Solving' 카테고리의 다른 글
[ 프로그래머스 / Java] 기능개발 (0) | 2021.07.26 |
---|---|
[ 백준 17281 ] ⚾ 야구 - Java 시간초과 (0) | 2021.07.22 |
[ 프로그래머스 / Java] 신규 아이디 추천 (1) | 2021.03.31 |
[ 프로그래머스 ] 주식 가격 (0) | 2021.03.30 |
[ 프로그래머스 ] N개의 최소공배수 (0) | 2021.03.29 |
250x250
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 프로그래머스
- 키패드 누르기
- 1629
- RGB거리
- 01타일
- 39회차
- DP
- 가장 큰 수
- vaild
- 오버로딩
- 카카오 인턴십
- 삼각달팽이
- javascript
- 문자열 압축
- for of
- 삼성 코테
- 삼성기출
- 백준
- 19236
- yyyy-MM-dd
- 카카오 코딩 테스트
- 제네릭 타입
- 날짜 유효성
- spring cache
- 커링
- local cache
- 반례
- 청소년상어
- java
- 제네릭(Generic)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함