forked from ShyrenMore/InterviewPrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkahn_algo.cpp
48 lines (40 loc) · 1.11 KB
/
kahn_algo.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
#include <bits/stdc++.h>
using namespace std;
/*
Time Complexity: O(V+E), where V = no. of nodes and E = no. of edges. This is a simple BFS algorithm.
Space Complexity: O(N) + O(N) ~ O(2N), O(N) for the indegree array, and O(N) for the queue data structure used in BFS(where N = no.of nodes).
*/
class Solution{
public:
vector<int> topoSort(int V, vector<int> adj[])
{
vector<int> indegree(V, 0);
vector<int> ans;
// preparing indegree array
for (int i = 0; i < V; i++)
{
for (auto it: adj[i])
{
indegree[it]++;
}
}
// pushing nodes with indegree 0 in Q
queue<int> q;
for (int i = 0; i < V; i++)
if(indegree[i] == 0)
q.push(i);
while(!q.empty())
{
int node = q.front();
q.pop();
ans.push_back(node);
for(auto it: adj[node])
{
indegree[it]--;
if(indegree[it] == 0)
q.push(it);
}
}
return ans;
}
};