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!
@danielediriweera71346 жыл бұрын
This Help SOO much more than the other stuff out there thanks!
@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.
@CorneliusPaardekooper5 жыл бұрын
This is an amazing way to understand the discrete mathematics applications using coding!
@mikkoylimannila81042 жыл бұрын
Thanks, this helped me in my computer science class!
@ioannakartsonaki33517 жыл бұрын
very well explained, thank you!
@siomarapantarotto2 жыл бұрын
What a great explanation! Congrats and thanks for sharing this content.
@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!
@frazebean5117 Жыл бұрын
Thank you mate I love your video.
@asgm13823 жыл бұрын
Awesome explanation!
@MiCharlXXD45 жыл бұрын
15 minutes before my exam..ThanksXD
@gamer72343 жыл бұрын
Great video
@vusumuzingwazini36605 жыл бұрын
Thank you! (Interview Prep)
@user-sw1wq8lh2w2 жыл бұрын
wow, so good.
@menoima95012 жыл бұрын
omg bless you lad
@SiddhantParkar3 жыл бұрын
Thank you, this helped
@iam_kundan6 жыл бұрын
Great video !
@adamhughes99385 жыл бұрын
Excellent
@SimoneAKABrigante6 жыл бұрын
Excellent video, thanks :)
@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) } }