-
Notifications
You must be signed in to change notification settings - Fork 0
/
Topology_vector.cpp
50 lines (42 loc) · 1.02 KB
/
Topology_vector.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
/*
위상 정렬은 "순서가 정해져 있는 작업"
DAG(directed acyclic graph)에만 적용
사이클이 발생하는 경우 위상 정렬을 수행할 수 없다.
*/
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
vector<vector<int>> adj_list;
vector<int> indegree;
queue<int> q;
vector<int> result;
void addEdge(int u, int v) {
adj_list[u].push_back(v);
indegree[v]++;
}
bool topologicalSort(int V) {
for (int v = 1; v <= V; v++) {
if (indegree[v] == 0)
q.push(v);
}
for (int i = 0; i < V; i++) {
if (q.empty()) {
printf("has Cycle\n");
return false;
}
int cur = q.front();
q.pop();
result.push_back(cur);
for (auto adj : adj_list[cur]) {
// indegree[adj]--;
// if (indegree[adj] == 0) {
// q.push(adj);
// }
if (--indegree[adj] == 0) {
q.push(adj);
}
}
}
return true;
}