-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopological_sort_dfs.cpp
51 lines (50 loc) · 1.39 KB
/
topological_sort_dfs.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
#include <bits/stdc++.h>
using namespace std;
vector<list<int>> directedgraphcompiler(vector<pair<int,int>> det, int nodes)
{
vector<list<int>> graph(nodes+1);
for (int i = 0; i < det.size(); i++)
{
graph[det[i].first].push_back(det[i].second);
}
return graph;
}
void topologicalSorter(vector<list<int>> graph, int source, vector<bool>& visited, stack<int>& grep)
{
visited[source] = true;
list<int> holder = graph[source];
for(auto itr = holder.begin(); itr!=holder.end(); itr++)
{
if(!visited[*itr])
{
topologicalSorter(graph, *itr, visited, grep);
}
}
grep.push(source);
}
int main()
{
vector<pair<int,int>> det;
det.push_back(make_pair(1,4));
det.push_back(make_pair(1,3));
det.push_back(make_pair(3,4));
det.push_back(make_pair(3,2));
det.push_back(make_pair(4,2));
det.push_back(make_pair(2,5));
det.push_back(make_pair(6,5));
det.push_back(make_pair(6,2));
int nodes = 6;
vector<list<int>> mo = directedgraphcompiler(det, nodes);
vector<bool> visited(nodes+1, false);
stack<int> grepper;
for (int source = 1; source <= nodes; source++)
{
if(visited[source] == false) topologicalSorter(mo, source, visited, grepper);
}
int n = grepper.size();
for (int i = 0; i < n; i++)
{
cout<<grepper.top()<<" ";
grepper.pop();
}
}