Depth First Search (DFS) - 5 minutes algorithm - python [Imagineer]

Поделиться
HTML-код
  • Опубликовано: 22 дек 2024

Комментарии • 26

  • @tbaqar
    @tbaqar 5 лет назад +14

    Wow this was by far the easiest tutorial on DFS that included code. Thank you!

  • @kamaboko1
    @kamaboko1 5 лет назад +1

    OMG, by far the best explanation I've seen. You can teach my college prof how to explain this.

  • @TheNighIsCallingMe
    @TheNighIsCallingMe 3 года назад +1

    great work. we need tutorial as easy, short and effective like this

  • @elenatalley7899
    @elenatalley7899 3 года назад +1

    The best explanation! Thank you!

  • @LuisAlberto-gi6ml
    @LuisAlberto-gi6ml 4 года назад +1

    It was the fastest explanation I see. Thank you!!!

  • @akboss4341
    @akboss4341 4 года назад +1

    this guys needs best teacher award

  • @TheZeetskeet
    @TheZeetskeet 3 года назад

    Best explanation! You're amazing, please carry on!

  • @treksis
    @treksis 3 года назад +1

    phenomenal explanation

  • @vuongtiennguyen3268
    @vuongtiennguyen3268 4 года назад +1

    quiet ez understandable code and explanation. Thank you! :3

  • @Maca-c2s
    @Maca-c2s 3 года назад +1

    DFS 개념 이해하는데 도움 많이 됐습니다!

  • @electric336
    @electric336 4 года назад +1

    Excellent video.

  • @abchrisyou
    @abchrisyou 5 лет назад +1

    고맙습니다.

  • @learningeveryday9603
    @learningeveryday9603 4 года назад +1

    Thanks a lot. Specially for the code.

  • @cherryBlossomE7
    @cherryBlossomE7 5 лет назад +1

    wow this was so helpful! Thank you so much!

  • @Doctor.Fortnite
    @Doctor.Fortnite 7 лет назад +1

    This prints output from right to left but what if I want to print left to right?

    • @TheEasyoung
      @TheEasyoung  7 лет назад +1

      Umer Naeem hi, there are many ways to it, you can reverse output once it is ready :) that is the easiest way from existing code.

  • @bostevens236
    @bostevens236 4 года назад +1

    Thanks a lot. Add a link from this video to your Graph Concepts video!!

  • @treelight1707
    @treelight1707 6 лет назад

    Nice presentation, really easy to follow. I have a question. It seems that we don't need the visited_vertex list if this is a tree, not a graph, right?

    • @TheEasyoung
      @TheEasyoung  6 лет назад

      thanks, I believe you still need visited_vertex since even if it is a tree, you should check if the neighbor of current node is already visited or not.

    • @rajsahni3988
      @rajsahni3988 4 года назад

      @@TheEasyoungcan we solve it by recursion too

  • @siddharthasharma9316
    @siddharthasharma9316 4 года назад +1

    Thank you

  • @pratikdhargalkar4876
    @pratikdhargalkar4876 4 года назад +1

    damn brilliant oppa

  • @lMatheusx
    @lMatheusx 2 года назад +1

    Easy to understand the theory, but complex to code ;-;

  • @boudjajmaryame6507
    @boudjajmaryame6507 4 года назад +1

    mercii beaucoup

  • @muddassirghoorun4322
    @muddassirghoorun4322 4 года назад +1

    Nice code