-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathTopological Sort Using DFS.cpp
More file actions
61 lines (56 loc) · 1.44 KB
/
Copy pathTopological Sort Using DFS.cpp
File metadata and controls
61 lines (56 loc) · 1.44 KB
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
#include <iostream>
#include<map>
#include<queue>
#include<list>
using namespace std;
template<typename T>
class Graph{
map<T, list<T>> l;
public:
void addEdge(T x, T y){
l[x].push_back(y);
}
void dfs_helper(T src, map<T, bool> &visited, list<T> &ordering){
//Recursive function that will traverse the graph
visited[src]=true;
// go to all nbr of that node that is not visited
for(T nbr:l[src]){
if(!visited[nbr]){
dfs_helper(nbr, visited, ordering);
}
}
ordering.push_front(src);
return;
}
void dfs(){
map<T, bool> visited;
list<T> ordering;
// mark all the nodes as not visited in the begining
for(auto p:l){
T node=p.first;
visited[node]=false;
}
// iterate over all the vertices and init dfs call
for(auto p:l){
T node = p.first;
if(!visited[node]){
dfs_helper(node, visited, ordering);
}
}
for(auto node: ordering){
cout<<node<<endl;
}
}
};
int main() {
Graph<string> g;
g.addEdge("Python", "Data Preprocessing");
g.addEdge("Python", "PyTorch");
g.addEdge("Data Preprocessing", "ML");
g.addEdge("PyTorch", "DL");
g.addEdge("ML", "DL");
g.addEdge("DL","FaceRecogn");
g.addEdge("DataSet", "FaceRecogn");
g.dfs();
return 0;
}