Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
[알고리즘] 간단한 dfs 구현 (C++) 본문
728x90
#include<iostream>
#include<vector>
using namespace std;
int number = 7;
int c[8];
vector<int> a[8];
void dfs(int x) {
if (c[x]) return;
c[x] = true;
cout << x << ' ';
for (int i = 0; i < a[x].size(); i++)
{
int y = a[x][i];
dfs(y);
}
}
int main() {
// 1 2
a[1].push_back(2);
a[2].push_back(1);
// 1 3
a[1].push_back(3);
a[3].push_back(1);
// 2 3
a[2].push_back(3);
a[3].push_back(2);
// 2 4
a[2].push_back(4);
a[4].push_back(2);
// 2 5
a[2].push_back(5);
a[5].push_back(2);
// 3 6
a[3].push_back(6);
a[6].push_back(3);
// 3 7
a[3].push_back(7);
a[7].push_back(3);
// 4 5
a[4].push_back(5);
a[5].push_back(4);
// 6 7
a[6].push_back(7);
a[7].push_back(6);
dfs(1);
return 0;
}
'[IT] > 알고리즘' 카테고리의 다른 글
[알고리즘] 간단한 크루스칼 알고리즘 구현(C++) (0) | 2019.05.31 |
---|---|
[알고리즘] 간단한 union-find 알고리즘의 구현(C++) (0) | 2019.05.31 |
[알고리즘] 간단한 bfs 구현 (C++) (0) | 2019.05.31 |
[알고리즘] 간단한 queue 구현(C++) (0) | 2019.05.31 |
[알고리즘] 간단한 스택 사용(C++) (0) | 2019.05.31 |
Comments