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

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

Anuj Bhaiya

Anuj Bhaiya

Күн бұрын

Пікірлер: 47
@arambh-gaur
@arambh-gaur Ай бұрын
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
@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); }
@MindsetMotivation75
@MindsetMotivation75 2 жыл бұрын
This video is helpful for me . Thank you
@sarvjeet_singh_001
@sarvjeet_singh_001 Жыл бұрын
serial numbering on video is very thoughtful decision of yours. really helpful thank you
@MangoLassiYT
@MangoLassiYT 2 жыл бұрын
thank you
@AnaghAngira
@AnaghAngira 2 жыл бұрын
Very fast bhaiya thanku 🙏🙏
@saritaprasad4295
@saritaprasad4295 Жыл бұрын
appreciate your effort
@meetsoni1938
@meetsoni1938 2 жыл бұрын
Most underrated video ever on KZbin 🔥🔥💯💯🚀
@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 💕
@songlover4566
@songlover4566 2 жыл бұрын
Sayad Sir ek digital board bhi le Lena chahiye aapko because ur teaching method is nice 👍
@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
@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.
@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
@ankurgarg5326
@ankurgarg5326 6 ай бұрын
Greeat video but i think there is no need of visited array in this function
@coolstuff9837
@coolstuff9837 2 жыл бұрын
what is the use of making visited boolean .You haven't used it in the problem.
@harsha4048
@harsha4048 Жыл бұрын
@Premvarma01
@Premvarma01 2 жыл бұрын
There is typo error on line 95 I think it should be for(int e:ansList)
@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
@jknair0
@jknair0 6 ай бұрын
First video i use slow speed for.
@mrrishiraj88
@mrrishiraj88 2 жыл бұрын
🙏👍
@deepakvaishnav9780
@deepakvaishnav9780 2 жыл бұрын
Present bhaiya
@humblecoder254
@humblecoder254 2 жыл бұрын
bhaiya thora speed barado😅😅 Thanks a lot🙏🙏🙏🙏
@lubna2425
@lubna2425 2 жыл бұрын
When course will be end ?
@mohdamaanansari4922
@mohdamaanansari4922 2 жыл бұрын
is this course is completed or any more videos are left
@smilingmahi1835
@smilingmahi1835 2 жыл бұрын
Roadmap for Amazon jobs High package Please help me
@FARMAAN2001
@FARMAAN2001 2 жыл бұрын
Kya haal hai bhai
@vipinsaini3786
@vipinsaini3786 2 жыл бұрын
Hi
@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
@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.
@vipinsaini3786
@vipinsaini3786 2 жыл бұрын
Job app developers kasi melge
@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 😄
@abdullahalmahfuz6700
@abdullahalmahfuz6700 2 жыл бұрын
Sir! Please, make videos on Django
@lightningboy906
@lightningboy906 2 жыл бұрын
Blockchain ka roadmap bana do🥲
@kshitizraj6210
@kshitizraj6210 2 жыл бұрын
Bhaiya is course is over?
@ayushsingal2097
@ayushsingal2097 2 жыл бұрын
:)
310. Minimum Height Trees | BFS | Topological Sort | Graphs
24:47
兔子姐姐最终逃走了吗?#小丑#兔子警官#家庭
00:58
小蚂蚁和小宇宙
Рет қаралды 16 МЛН
HELP!!!
00:46
Natan por Aí
Рет қаралды 37 МЛН
Random Emoji Beatbox Challenge #beatbox #tiktok
00:47
BeatboxJCOP
Рет қаралды 50 МЛН
Unveiling the Mystery: Simplifying a Complex Radical
3:28
Mathmorphosis
Рет қаралды 10
Topological Sort | Kahn's Algorithm | Graph Theory
13:32
WilliamFiset
Рет қаралды 126 М.
G-22. Kahn's Algorithm | Topological Sort Algorithm | BFS
13:50
take U forward
Рет қаралды 258 М.
Breadth First Search (BFS): Visualized and Explained
10:41
Reducible
Рет қаралды 214 М.
Topological Sort (DFS)
18:06
take U forward
Рет қаралды 138 М.
Top 5 Most Common Graph Algorithms for Coding Interviews
13:01
Topological Sort Algorithm | Graph Theory
14:09
WilliamFiset
Рет қаралды 467 М.
兔子姐姐最终逃走了吗?#小丑#兔子警官#家庭
00:58
小蚂蚁和小宇宙
Рет қаралды 16 МЛН