Kahn's Algorithm | Topological Sort using BFS | Graph Data Structure | Kahn Algorithm | DSAOne #80

  Рет қаралды 28,841

Anuj Bhaiya

Anuj Bhaiya

Күн бұрын

Пікірлер: 48
@arambh-gaur
@arambh-gaur 2 ай бұрын
You have comprehensively covered every single thing in this playlist that is required to solve most graph problems, hats off !!
@SunnyGupta00
@SunnyGupta00 2 жыл бұрын
class Solution { //Function to return list containing vertices in Topological order. static int[] topoSort(int V, ArrayList adj) { int indegree[]=new int[V]; for(ArrayListtemp:adj){ for(int i:temp){ indegree[i]++; } } ArrayListans=new ArrayList(); bfs(adj,indegree,ans); int finalans[]=new int[V]; int i=0; for(int j:ans){ finalans[i++]=j; } return finalans; } static void bfs(ArrayList adj,int in[],ArrayListans){ Queueq=new LinkedList(); for(int i=0;i0){ int temp=q.poll(); ans.add(temp); for(int i:adj.get(temp)){ in[i]--; if(in[i]==0){ q.add(i); } } } } }
@rutkarbhat9508
@rutkarbhat9508 2 жыл бұрын
This playlist is Gold. Hats off bhaiya
@sarvjeet_singh_001
@sarvjeet_singh_001 Жыл бұрын
serial numbering on video is very thoughtful decision of yours. really helpful thank you
@MindsetMotivation75
@MindsetMotivation75 2 жыл бұрын
This video is helpful for me . Thank you
@SagarBisen-kt8ex
@SagarBisen-kt8ex 9 ай бұрын
Thanks for this awesome explanation. Just one correction what if indegree[node] is not zero, to handle these cases, we have to add below piece of code : for (int i = 0; i < V; i++) { if (indegree[i] == 0) q.add(i); }
@aniankiraja689
@aniankiraja689 4 күн бұрын
If indegree of any vertex will not be zero, wont it become cyclic?
@AnaghAngira
@AnaghAngira 2 жыл бұрын
Very fast bhaiya thanku 🙏🙏
@songlover4566
@songlover4566 2 жыл бұрын
Sayad Sir ek digital board bhi le Lena chahiye aapko because ur teaching method is nice 👍
@saritaprasad4295
@saritaprasad4295 Жыл бұрын
appreciate your effort
@MangoLassiYT
@MangoLassiYT 2 жыл бұрын
thank you
@AmeerHamza-mt5yi
@AmeerHamza-mt5yi 2 жыл бұрын
Anuj bhai please make a series of aptitude for company interview this is the 1st round of most of the companies asked bahut chalega please make proper order cover every topic huge demand of every studuent technical bahut loge ne ban diya hai
@SurajKumar-nz7dh
@SurajKumar-nz7dh 2 жыл бұрын
Bhaiya your video is very helpful... Please make it regularly...🙏🙏🙏
@Nitinnawkhare1234
@Nitinnawkhare1234 2 жыл бұрын
Bhaiya ye dsa konse language me padha rahe he
@SurajKumar-nz7dh
@SurajKumar-nz7dh 2 жыл бұрын
@@Nitinnawkhare1234 C++
@deepnarayanbhagat9126
@deepnarayanbhagat9126 2 жыл бұрын
@@Nitinnawkhare1234 graph Java me implement kara h inhone 💕
@Sky-gk4qq
@Sky-gk4qq 2 жыл бұрын
Bhai iske sath Kruskal, Prims aur Dijktra dal dena toh series mostly covered ho jayega.
@AnujBhaiya
@AnujBhaiya 2 жыл бұрын
Aaj hi aa jaengi prims and dijkstra's, stay tuned
@Sky-gk4qq
@Sky-gk4qq 2 жыл бұрын
@@AnujBhaiya TYSM bhaiya
@vcs649
@vcs649 Жыл бұрын
nice explanation👍
@shubhanganitayal8185
@shubhanganitayal8185 2 жыл бұрын
Please make a video on Edge removal in tree, remove an edge such that the product of the sum of weights of two subtrees is maximized.
@meetsoni1938
@meetsoni1938 2 жыл бұрын
Most underrated video ever on KZbin 🔥🔥💯💯🚀
@deepakvaishnav9780
@deepakvaishnav9780 2 жыл бұрын
Present bhaiya
@pironobcoding
@pironobcoding 2 жыл бұрын
Bhaiya we have to add Degree[i]=-1; after adding that to queue otherwise it will give us runtime error. in the intial loop static void dfs(int [] Degree,int V, ArrayList result,ArrayList adj){ Queue q = new LinkedList(); for(int i=0;i
@ankurgarg5326
@ankurgarg5326 7 ай бұрын
Greeat video but i think there is no need of visited array in this function
@jknair0
@jknair0 7 ай бұрын
First video i use slow speed for.
@harsha4048
@harsha4048 Жыл бұрын
@coolstuff9837
@coolstuff9837 2 жыл бұрын
what is the use of making visited boolean .You haven't used it in the problem.
@humblecoder254
@humblecoder254 2 жыл бұрын
bhaiya thora speed barado😅😅 Thanks a lot🙏🙏🙏🙏
@mrrishiraj88
@mrrishiraj88 2 жыл бұрын
🙏👍
@Premvarma01
@Premvarma01 2 жыл бұрын
There is typo error on line 95 I think it should be for(int e:ansList)
@FARMAAN2001
@FARMAAN2001 2 жыл бұрын
Kya haal hai bhai
@smilingmahi1835
@smilingmahi1835 2 жыл бұрын
Roadmap for Amazon jobs High package Please help me
@Singhoustic
@Singhoustic 2 жыл бұрын
Hello bhaiya🤩
@AnujBhaiya
@AnujBhaiya 2 жыл бұрын
Hey 👋
@FARMAAN2001
@FARMAAN2001 2 жыл бұрын
Bola to mene bhi tha kya haal h bhai isko to bol diya hey munhe ku nhi bola
@Singhoustic
@Singhoustic 2 жыл бұрын
@@FARMAAN2001 bhai unki taraf se main hello keh deta hoon Hey 😄
@mohdamaanansari4922
@mohdamaanansari4922 2 жыл бұрын
is this course is completed or any more videos are left
@lubna2425
@lubna2425 2 жыл бұрын
When course will be end ?
@lightningboy906
@lightningboy906 2 жыл бұрын
Blockchain ka roadmap bana do🥲
@vipinsaini3786
@vipinsaini3786 2 жыл бұрын
Hi
@vipinsaini3786
@vipinsaini3786 2 жыл бұрын
Job app developers kasi melge
@dhanrajlouvanshi7872
@dhanrajlouvanshi7872 2 жыл бұрын
Please provide us link of code
@kaushlendramishra5588
@kaushlendramishra5588 Жыл бұрын
indeg is doing the visited array job also. so no need of this array I guess.
@brajagopalmukherjee1588
@brajagopalmukherjee1588 2 жыл бұрын
Bhaiya what is the timeframe to end of this course?one request bhaiya we need java long video with assignment and all basics concept for starting dsa
@kshitizraj6210
@kshitizraj6210 2 жыл бұрын
Bhaiya is course is over?
@abdullahalmahfuz6700
@abdullahalmahfuz6700 2 жыл бұрын
Sir! Please, make videos on Django
@ayushsingal2097
@ayushsingal2097 2 жыл бұрын
:)
Topological Sort | Kahn's Algorithm | Graph Theory
13:32
WilliamFiset
Рет қаралды 129 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 30 МЛН
Can You Find Hulk's True Love? Real vs Fake Girlfriend Challenge | Roblox 3D
00:24
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 5 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 183 МЛН
310. Minimum Height Trees | BFS | Topological Sort | Graphs
24:47
NVIDIA’s New AI: Stunning Voice Generator!
6:21
Two Minute Papers
Рет қаралды 77 М.
G-22. Kahn's Algorithm | Topological Sort Algorithm | BFS
13:50
take U forward
Рет қаралды 267 М.
I gave 127 interviews. Top 5 Algorithms they asked me.
8:36
Sahil & Sarra
Рет қаралды 674 М.
Why is Python 150X slower than C?
10:45
Mehul - Codedamn
Рет қаралды 18 М.
Topological Sort Algorithm | Graph Theory
14:09
WilliamFiset
Рет қаралды 474 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 30 МЛН