#include <iostream>
#include <vector>
#include <stack>
using namespace std;
void dfs(int start,vector<vector <int>> temp) {
vector <bool> check(temp.size(), false); // 방문한지 안한지
stack<int> s;
s.push(start);
check[start] = true;
cout << s.top() << endl;
int index = start;
int index2 = 0;
while (!s.empty()) {
if (temp[index][index2] == 1&&check[index2]==false) {
s.push(index2);
check[index2] = true;
cout << s.top() << endl;
index = index2;
index2 =0 ;
}
index2++;
if (index2 == temp.size()) {
index = s.top();
s.pop();
index2 = 0;
}
}
}
int main() {
vector<vector<int>> temp = {
{0,1,1,0,0,0,0},
{1,0,1,1,1,0,0},
{1,1,0,0,0,1,1},
{0,1,0,0,1,0,0},
{0,1,0,1,0,0,0},
{0,0,1,0,0,0,1},
{0,0,1,0,0,1,0}
};
for (int i = 0; i < temp.size(); i++) {
for (int j = 0; j < temp[i].size(); j++) {
cout << temp[i][j];
}
cout << endl;
}
dfs(0,temp);
system("pause");
return 0;
}
0110000
1011100
1100011
0100100
0101000
0010001
0010010
0
1
2
5
6
3
4
'C++ 알고리즘 > 6. 검색 알고리즘' 카테고리의 다른 글
깊이 우선 탐색(DFS) // 프로그래머스 타겟넘버 (0) | 2019.09.03 |
---|---|
깊이 우선 탐색 (DFS) // 재귀 사용 (0) | 2019.09.03 |
너비우선 탐색 (BFS) // 큐 사용해야됨 (0) | 2019.09.03 |
댓글