This video was awesome. 30 minutes before my exam... thanks!
@VenatorXVenator5 жыл бұрын
same
@GtaRockt3 жыл бұрын
Hope you passed it
@palincca5 жыл бұрын
This explained graph traversal so much better than my actual university prof... thank you!
@CorneliusPaardekooper5 жыл бұрын
This is an amazing way to understand the discrete mathematics applications using coding!
@rezwanislam13322 жыл бұрын
thank you so much for doing this in such a concise manner. I learned more from this short video than I did in a whole semester.
@mikkoylimannila81042 жыл бұрын
Thanks, this helped me in my computer science class!
@danielediriweera71346 жыл бұрын
This Help SOO much more than the other stuff out there thanks!
@ioannakartsonaki33517 жыл бұрын
very well explained, thank you!
@frazebean5117 Жыл бұрын
Thank you mate I love your video.
@siomarapantarotto2 жыл бұрын
What a great explanation! Congrats and thanks for sharing this content.
@asgm13823 жыл бұрын
Awesome explanation!
@vusumuzingwazini36605 жыл бұрын
Thank you! (Interview Prep)
@zss1234567894 жыл бұрын
Is this a good answer to BFS vs DFS? "If you don't have to traverse through all nodes of the graph, BFS is generally a better approach since the probability of you traversing nodes unnecessarily is lowered. However, if you have to traverse through all nodes, there's no time difference, but DFS would be preferred because it's more memory efficient."
@zss1234567895 жыл бұрын
Best one so far, subscribed!
@gamer72343 жыл бұрын
Great video
@SiddhantParkar3 жыл бұрын
Thank you, this helped
@user-sw1wq8lh2w2 жыл бұрын
wow, so good.
@MiCharlXXD45 жыл бұрын
15 minutes before my exam..ThanksXD
@menoima95012 жыл бұрын
omg bless you lad
@adamhughes99385 жыл бұрын
Excellent
@SimoneAKABrigante6 жыл бұрын
Excellent video, thanks :)
@iam_kundan6 жыл бұрын
Great video !
@anonim50525 жыл бұрын
this should be not VS but AND
@xyzoooo401 Жыл бұрын
Hi how is this linked to a stack ? Is stack only used for visualisation ? TIA The pseudo code seems much more straightforward. dfs(n, visited): print(n.value) for a in n.adjNodes { if !visited.contains(a) { dfs(n, visited) } }