-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTopology.cpp
63 lines (56 loc) · 1.44 KB
/
Topology.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
위상 정렬은 "순서가 정해져 있는 작업"
DAG(directed acyclic graph)에만 적용
사이클이 발생하는 경우 위상 정렬을 수행할 수 없다.
*/
#include <iostream>
#include <vector>
#include <queue>
#define MAX 10
using namespace std;
int n, inDegree[MAX];
vector<int> a[MAX];
void topologySort() {
int result[MAX];
queue<int> q;
// 진입 차수가 0인 노드를 큐에 삽입한다.
for(int i = 1; i <= n; i++) {
if(inDegree[i] == 0) q.push(i);
}
// 정렬이 완전히 수행되려면 정확히 n개의 노드를 방문합니다.
for(int i = 1; i <= n; i++) {
// n개를 방문하기 전에 큐가 비어버리면 사이클이 발생하는 것입니다.
if(q.empty()) {
printf("사이클이 발생했습니다.");
return;
}
int x = q.front();
q.pop();
result[i] = x;
for(int i = 0; i < a[x].size(); i++) {
int y = a[x][i];
if(--inDegree[y] == 0) q.push(y);
}
}
for(int i = 1; i <= n; i++) {
printf("%d ", result[i]);
}
}
int main(void) {
n = 7;
a[1].push_back(2);
inDegree[2]++;
a[1].push_back(5);
inDegree[5]++;
a[2].push_back(3);
inDegree[3]++;
a[3].push_back(4);
inDegree[4]++;
a[4].push_back(6);
inDegree[6]++;
a[5].push_back(6);
inDegree[6]++;
a[6].push_back(7);
inDegree[7]++;
topologySort();
}