url을 bj가 아니라 boj로 바꾸고 싶은데 다 바꿀 엄두가 안 난다. 더 늦기 전에 해야겠다...
그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.
첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.
첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.
BFS
와 DFS
를 각각 해주면 된다.BFS/DFS
를 처음 풀었을 때 풀었던 거라서 코드는 있었는데 틀린 부분이 있어서 수정했다.#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;
int n, m;
vector<int> graph[1001];
bool visited_dfs[1001];
bool visited_bfs[1001];
void dfs(int x) {
cout << x << " ";
visited_dfs[x] = true;
for (int i = 0; i < graph[x].size(); i++) {
int y = graph[x][i];
if (!visited_dfs[y]) dfs(y);
}
}
void bfs(int start) {
queue<int> q;
q.push(start);
visited_bfs[start] = true;
while (!q.empty()) {
int x = q.front();
cout << x << " ";
q.pop();
for (int i = 0; i < graph[x].size(); i++) {
int y = graph[x][i];
if (!visited_bfs[y]) {
q.push(y);
visited_bfs[y] = true;
}
}
}
}
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int v;
cin >> n >> m >> v;
int numFrom, numTo;
for (int i = 0; i < m; i++) {
cin >> numFrom >> numTo;
graph[numFrom].push_back(numTo);
graph[numTo].push_back(numFrom);
}
for (int i = 0; i < n; i++){
sort(graph[i].begin(), graph[i].end());
}
dfs(v);
cout << endl;
bfs(v);
cout << endl;
}