How Dijkstra's Algorithm Works

Поделиться
HTML-код
  • Опубликовано: 4 июн 2024
  • Dijkstra's Algorithm allows us to find the shortest path between two vertices in a graph. Here, we explore the intuition behind the algorithm - what information we need to keep track of, in what order we need to explore vertices, and what the limitations of the algorithm are.
    ***
    Spanning Tree is an educational video series about computer science and mathematics. See more at spanningtree.me
    To be notified when a new video is released, sign up for the Spanning Tree mailing list at spanningtree.substack.com/
    Spanning Tree is created by Brian Yu. brianyu.me/
    Email me at brian@spanningtree.me to suggest a future topic.

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

  • @beketmyrzanov1979
    @beketmyrzanov1979 3 года назад +1115

    This video is ridiculously underrated ((

  • @hongweichen3581
    @hongweichen3581 3 года назад +825

    Came from Computerphile's video after not understanding, and this is just so much better! You made advanced concepts so easy to understand for beginners like me, thank you.

    • @TainuiaKid1973
      @TainuiaKid1973 2 года назад +8

      Here's the implementation in Python
      ruclips.net/video/VnTlW572Sc4/видео.html

    • @Itachi.Uchiha.Offical
      @Itachi.Uchiha.Offical Год назад +14

      Same! Came from Computerphile, felt dumb, watched this, and understood.

    • @turuus5215
      @turuus5215 Год назад +8

      Same, concepts should be intuitive for humans.

    • @dineshkumare1750
      @dineshkumare1750 Год назад +3

      @@TainuiaKid1973 I also came here after seeing Computerphile video😂..

    • @nayankumarbarwa4317
      @nayankumarbarwa4317 Год назад +1

      This video is criminally underrated

  • @aries3690
    @aries3690 2 года назад +607

    I cant stress how amazing these animations are! You are a livesaver for "self-learners" like us :)

    • @acedev003
      @acedev003 2 года назад +2

      Absolutely!

    • @Yell-Heah
      @Yell-Heah 2 года назад

      fuck, dude, yeah. I don't learn anything from my college lectures- I need stuff I can pause and rewind, and my monkey brain does great with visual assistance. needing to basically self-teach myself all my CompSci, I don't wanna think about where I'd be without videos like this

    • @MichaelKingsfordGray
      @MichaelKingsfordGray Год назад +1

      Learn your real name first!

    • @MikhailFederov
      @MikhailFederov Год назад +4

      Calling yourself a self learner is meaningless. Everyone is a self learner.

    • @MichaelKingsfordGray
      @MichaelKingsfordGray Год назад +1

      @@MikhailFederov There is a more respectable term for self-taught:
      Autodidact.

  • @Yell-Heah
    @Yell-Heah 2 года назад +79

    I've been agonizing over trying to understand this algorithm for a class for hours- and now I'm about halfway through this video, and I'm already feeling enlightened. It's FINALLY clicking. You're a lifesaver, mate!

  • @Mobin92
    @Mobin92 Год назад +50

    THANK YOU for the part at 6:28 ! Nobody else seems to explain how to actually find the path, and not just it's length.

  • @dominiorrr6510
    @dominiorrr6510 Год назад +34

    I love learning based on examples and this is by far the best example of Dijkstra's algorithm I've seen so far. It covers a lot of aspects that might not be obvious at first. I haven't even learned Dijkstra yet, but it feels trivial to implement after knowing how simple graph algorithms like DFS or BFS work.

  • @skidoodles
    @skidoodles 3 года назад +269

    For each vertex v:
    Dist[v] = infinite
    Prev[v] = none
    Dist source = 0
    Set all vertices to unexplored
    While destination not explored:
    V = least valued unexplored vortex
    Set v to explored
    For each edge (v, w):
    If dist[v] + len(v, w) < dist[w]:
    Dist[w] = dist[v] + len[v, w]
    Prev[w] = v

    • @adharlak510
      @adharlak510 3 года назад +3

      Thank you to SpanningTree for the insight and thank you for the memo !

    • @abam9787
      @abam9787 Год назад +1

      What's the significance of Prev[w] when the latest update of Dist[w] is more important?

    • @AlumniQuad
      @AlumniQuad Год назад +3

      @@abam9787 6:24

    • @irrelevant_noob
      @irrelevant_noob Год назад +3

      @Skidoodles the last two lines should be indented more, to indicate they are both part of the "if true" branch of the conditional. Also, why not indent for the while loop?

    • @ayeyebrazof6559
      @ayeyebrazof6559 Год назад +5

      For each vertex v:
      Dist[v] = infinite
      Prev[v] = none
      Dist[source] = 0
      Set all vertices to unexplored
      While destination not explored:
      v = least valued unexplored vertex
      Set v to explored
      For each edge (v, w):
      If dist[v] + len(v, w) < dist[w]:
      Dist[w] = dist[v] + len[v, w]
      Prev[w] = v

  • @penguinjuice7543
    @penguinjuice7543 Год назад +2

    Absoloute life saver. Got taught this by a teacher who literally doesn't know computer science so videos like this are vital.

  • @supersakib62
    @supersakib62 Год назад +8

    One thing I realized, visualization is more helpful to grasp a context than just reading about it.

  • @prashanthvaidya
    @prashanthvaidya 3 года назад +130

    The animation is just outstanding!
    A video on "how" you make these videos or just what inspired you to get started on this creative journey would be awesome.
    Keep up the amazing work. I have subscribed and also pressed the bell icon. :)

  • @whatsup_internet
    @whatsup_internet 5 месяцев назад +1

    So far the best and easiest explainations i have ever seen on YT yet for dijkstra;s Algo. Great work !!! Thank you :)

  • @keitumetsemolefe3515
    @keitumetsemolefe3515 Год назад +2

    This is the best explanation on Dijkstra's algorithm I've ever come across!! 🙌🙌

  • @pend_deletepatrickguarente4916
    @pend_deletepatrickguarente4916 9 месяцев назад +2

    By far the best video on this subject I have ever seen, FANTASTIC job with those animations they are really good!

  • @artycrafty8691
    @artycrafty8691 Год назад

    Not only the video is underrated but the whole youtube channel is underrated. best of luck you spanning tree. This is the future of education. I feels so good when i look up to such unique educational channels.

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

    Please continue to do more of this video! Thank you so much for your content!!

  • @ozboomer_au
    @ozboomer_au Год назад +1

    A very helpful video. Just looking at code and some rambling explanation in a book made the algorithm as clear as mud in a beer bottle to me... but this video has made it so abundantly clear... and seeing how code is derived from it is more than helpful. Thanks so much for posting.

  • @jaylensung7332
    @jaylensung7332 9 месяцев назад +1

    It's amazing that I recognized this voice immediately and realized this random video I picked is actually from Brain! Thank you for all the hard work you've done!

  • @qazizayad
    @qazizayad Год назад

    i have my Alevel Comp Sci paper 12 hours from now. I love you man. Youre a real life saver

  • @ujjwalgupta4160
    @ujjwalgupta4160 3 года назад +26

    Kudos to the animation and explation.

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

    This is so much better than some other ones I already saw....and that was a nice tip at the end, referring to the negative value.

  • @demonking2526
    @demonking2526 Год назад +4

    Very great explanation, I just followed along Dikstra's algorithm in pseudo code and implemented pathfinding in Unity using it. This visual tool really helps explain the algorithm at hand! Great work.

  • @MartinStaykov
    @MartinStaykov Год назад +2

    I don't think I've ever watched anything ever explained in a clearer way than this.

  • @a.nataliia
    @a.nataliia 23 часа назад

    After CS50 that's one of my favourite voice on RUclips ☺ Thank you Brian for your great work!

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

    This channel is a germ!! So glad I found you!

  • @smikkelbeer7890
    @smikkelbeer7890 Год назад

    By far the best explanation on the internet. Thank you

  • @alliepiper4772
    @alliepiper4772 3 месяца назад +2

    I've been watching a few of your videos over the last day or so, and they're all just so good. You really have a knack for explaining complicated concepts with a clear, easy-to-grasp visual style. I think I'd describe your channel as "3blue1brown for computer science" :) I hope that comes off as complementary as it's intended. Kudos, and keep up the great work, I'm looking forward to more!

  • @OneTrueBadShoe
    @OneTrueBadShoe Год назад

    I saw this in a class in 1994 or 5. This has always been my favorite algorithm I've ever learned. Nice video

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

    Excellent walkthrough. 4th video down and I finally get it. Thanks

  • @ajaysrinivas2814
    @ajaysrinivas2814 Год назад +3

    What a great explainer video! Please make more of algorithms. Thanks a lot for making this video.

  • @adrienw4704
    @adrienw4704 Год назад +1

    very interesting!
    i love how you voice over your code. you make it super understandable!

  • @chrisogonas
    @chrisogonas Год назад

    Excellent illustration of the Dijkstra's algorithm. Superb!

  • @BrianOSheaPlus
    @BrianOSheaPlus Год назад

    Excellent video. Clear and concise description of Dijkstra's algorithm.

  • @egalomon
    @egalomon Год назад

    I don't know why YT is recommending this to me 2 years after its upload, but I gladly clicked on the video! This is pretty much the only thing I remember from when I was studying Geoinformatics before I quit lol so it's a nice throwback for me. Very well explained too! 8:30 for something our professor needed like 2 weeks for

  • @ghanshyamtripathi221
    @ghanshyamtripathi221 4 месяца назад

    not even kidding this is the best explanation/ visualisation one can ever get Thank you sir!!

  • @Adarsh_Tiwari
    @Adarsh_Tiwari Год назад +4

    This is almost similar to the CPM (Critical Path Method) that we study in Project Planning and Management. So beautifully explained

    • @TheMofRider2
      @TheMofRider2 Год назад +1

      Just wanted to mention that. You're absolutely right 🙂

  • @taumah7302
    @taumah7302 11 месяцев назад

    Incroyable ! Mes profs n'ont pas réussi à ma faire comprendre cet algo en 1h et là je tombe sur cette vidéo ! Merci tu viens de sauver mon année !

  • @davewilson4493
    @davewilson4493 Год назад +7

    No doubt like many other people, I reinvented a variant of this particular wheel (in my case back in the mid 90s while writing "AI" code for NPCs at a games company).
    A guy on our team who actually liked writing in x86 assembly language had written a brute-force A-B routefinding function that was slow enough to take up meaningful time.
    After some playing around in C, I ended up zeroing in on the offspring of Dijkstra which fully explores the graph and finds the shortest routes to everywhere, and it was several orders of magnitude faster than the assembly guy's code.

  • @rockstarpesu
    @rockstarpesu 10 месяцев назад

    Such a great way to explain the complex topic. Thanks a lot. 😊

  • @kacperwodiczko
    @kacperwodiczko 2 года назад

    Thank you! You've made it so easy to comprehend

  • @DaveAlexKD
    @DaveAlexKD Год назад

    I love this explanation is so simple to understand. Thank you!

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

    Awesome explanation, short and to the point.

  • @saipan1970
    @saipan1970 11 месяцев назад

    The ambience,sound the illustration and putting the main logic behind this algorithm : Clarity and transparency are optimum.Please do make videos like this for every important algo,a request.Refreshing..

  • @megamaser
    @megamaser 7 месяцев назад

    The first time I figured out this algorithm, it was by reading code. That worked, but took way longer than watching this video. This video is very nice. It is clear and touched the most important points. You've made an intuitive understanding of Dijkstra's algorithm easily accessible to anyone. The only thing I would add to this video is at least a brief mention that you would put the data in a heap. This could be a nice segue into a separate video about heaps.

  • @SimonTheDankOne
    @SimonTheDankOne Год назад

    I have a shortest path problem that I am currently working on, and even though I am familiar with the Dijkstra algorithm this somehow just made me instantly realise of my mistake in code. Gracias

  • @anilsuyal
    @anilsuyal 12 дней назад

    What an amazing explanation, that too with a visualisation. Thank you so much. Please keep posting such Visualisations of algorithms.

  • @bscorvin
    @bscorvin Год назад

    My professors love bringing up the traveling salesman problem and then not elaborating, so this was fun. Thanks!

  • @rodrigo-tj1gf
    @rodrigo-tj1gf 6 месяцев назад

    You need to post more, those videos are freaking good

  • @soniahandle
    @soniahandle Год назад

    Exactly what we need more of! Amazing explanation

  • @dailyamazingshortvideos
    @dailyamazingshortvideos Год назад

    This is the best explanation,one can ask for. . Waiting for more such algo explanations

  • @rpgprime
    @rpgprime Год назад +5

    By far THE best graphical explanation of Dijkstra's algorithm and it covers improving it to get the actual path 👍

  • @aakashdp
    @aakashdp 3 года назад +3

    thanks! easy to follow. explained in simple terms.

  • @CrescentDolluwu
    @CrescentDolluwu Год назад

    Besides how great of a job this video explains this concept, The absolute best part is the little blue robot blinking and looking around.

  • @gargolario
    @gargolario 2 года назад

    Great, clean and simple!
    Congrats!

  • @bapynshngain
    @bapynshngain Год назад +14

    This was really very insightful. I wish more teachers would adopt this method of teaching because it is so much easier to understand than the traditional textbook method!

    • @tirateehoffenberg8824
      @tirateehoffenberg8824 9 месяцев назад +1

      Making a high quality RUclips videos like this takes a lot more time than drawing nodes and edges on a whiteboard.

    • @ghad6799
      @ghad6799 4 месяца назад

      While giving high quality lectures on white board is skill. Honestly, our education system is fine, just the skill issue of conveying an idea. Fucking hell my "international university" profs can't even speak English.

  • @darkmaigo
    @darkmaigo 5 дней назад

    Thank you I finally understand it and implement it correctly!

  • @saragul2806
    @saragul2806 Год назад

    Amazing job! I have a logistics course in uni and I didn't understand the class. Lucky me found this video. Thank you!!!

  • @Mercury2wo
    @Mercury2wo Год назад

    Fantastic video!! Am watching all your videos back to back

  • @ChazWinter
    @ChazWinter 5 месяцев назад

    We are covering this in class right now, and my class loves this video.

  • @___vandanagupta___
    @___vandanagupta___ 10 месяцев назад

    The amazing quality of your videos is super underrated

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

    Great way to get a feel of Dijkstra's Algorithm

  • @DontAddMe
    @DontAddMe Год назад

    beautifuly explained! Dont stop making these videos. You are the savior of cs students

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

    Best video about dijkstra algorithm I have ever seen

  • @namankeshari7332
    @namankeshari7332 10 месяцев назад

    This is the first video I watched on your channel and on dijkstra's algorithm and damnn it was sooo good! Loved it!

  • @curesnow6493
    @curesnow6493 Год назад

    I am a virtual person and this is my first video so far, and it is very easy to understand!

  • @VG-re1bj
    @VG-re1bj Год назад

    I see everyday at my work that when one is able to easily understand a concept or idea, either the subject is assumed to be easy or the person learning it assumed that all the merit is hers/his.
    … But if it takes a big effort to understand an explanation, then for sure it is always the fault of the one providing it.
    The fact that you can perfectly understand something does not mean you can easily explain it to others: *Explaining things is not trivial* and if you watch a video and get the idea straight away, please, do not automatically assume you are extremely clever but consider the effort made by the person providing the explanation.
    Thanks for this excellent video.

  • @s1mplelance964
    @s1mplelance964 2 года назад

    Great video with clear explanation! It would fit those entry level guys.

  • @ccsmooth55
    @ccsmooth55 Год назад +2

    Very helpful video. Im a Network Engineer and this is how OSPF works (because it uses Djikstras Alg.). Instead of towns, its nodes (routers) on a network.

  • @naughtiusmaximus
    @naughtiusmaximus Год назад +6

    To understand Djikstra, you need to understand Roche and Ves's Theorems. And then Geralt's theorems.

    • @quadroninja2708
      @quadroninja2708 Год назад +1

      I can't find anything about Ves's and Geralt's theorems. Could you please share some links to these?

    • @quadroninja2708
      @quadroninja2708 Год назад

      oh i see, it's a joke :-)

    • @naughtiusmaximus
      @naughtiusmaximus Год назад +1

      Its a Witcher joke :D

  • @nawalkhawar7602
    @nawalkhawar7602 27 дней назад +1

    you're videos are extremely helpful. thank you for making these! Also love the robot

  • @ghostfjdgcsusvsgsj
    @ghostfjdgcsusvsgsj Год назад

    best explanation of dijkstra's algo so far

  • @gauravbhalerao7420
    @gauravbhalerao7420 Год назад +4

    From Google Maps to Project Management (CPM) the applications of this algo are literally limitless

  • @SaidElnaffar
    @SaidElnaffar Год назад +1

    I am sharing this link with my students in the Data Structures course -- Keep it up!

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

    This is incredibly well made!

  • @gowinidea
    @gowinidea Год назад

    You guys have produced super videos..thanks much!❤

  • @JayantKumarZ
    @JayantKumarZ Год назад

    my god this is amazing!!!!! How expert you must be at your art to be able to simplify to this extent

  • @HabunoGD1821
    @HabunoGD1821 7 месяцев назад

    I loved the video and your explanation.
    I read something out there and I want to share it
    3:47 - 4:42 "It's important to note that this approach may have limitations and doesn't always ensure the most accurate result. In certain situations, it could lead to inaccurate estimates if the initial estimation doesn't precisely reflect the reality of the path. In the original Dijkstra's algorithm, continually updating estimations is crucial to ensure the accuracy of the shortest path."

  • @sayantankundu973
    @sayantankundu973 2 года назад

    Just gotta a say, thanks a lot.... U have made it so easy to understand... The animation is very helpful... Keep going

  • @ikuubi
    @ikuubi 7 месяцев назад

    Most grandiose of respect,
    the other day I saw a video that jump straight to explaining the 'cost'. Me being a non technic person can't understand why a to b took so long, while you can just hypothenuse your way to b.
    But now it makes sense!

  • @SatyarthShankar
    @SatyarthShankar 2 года назад

    Your channel should grow! Amazing work!

  • @manishmakode6332
    @manishmakode6332 11 месяцев назад

    Really great animation for explaining the concept, loved it

  • @sankalpspatil4890
    @sankalpspatil4890 2 года назад

    After watching a few videos on this, for some reason the robot and town animation made the concept finally click. Thanks!

  • @Agamista379
    @Agamista379 Год назад +1

    This is amazing. Please keep the good work.

  • @matteobecatti3157
    @matteobecatti3157 2 года назад

    Very clear explanation, thank you!

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

    you are just doing a great job right there, Thank you

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

    I am taking CS50 Edx class, I recognized this voice. It must be you Brain. Wonderful job explaining this concept, just like you did in CS50!

  • @nielsdaemen
    @nielsdaemen 4 месяца назад

    Best explanation of Dijkstra's Algorithm!

  • @ssamship2275
    @ssamship2275 8 месяцев назад +1

    This video had actually insane timing. Just went over this in class.

  • @DC-zb7uf
    @DC-zb7uf 2 года назад

    Best video explanation out of them all, thanks !

  • @koomky
    @koomky 11 месяцев назад

    I used the Dantzig method to do this. Now I understand a new method, thanks

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

    Thank you!! Greetings from Argentina, excellent video!

  • @nojoodothmanal-ghamdi1026
    @nojoodothmanal-ghamdi1026 2 года назад

    How this video have less than 30k views!! It deserves ar least 1M, I really understood it so well thank you so much

  • @gutzimmumdo4910
    @gutzimmumdo4910 Год назад +6

    perfectly explained, intuitive well ordered and perfect example.
    great work

  • @mdkhaledhossain996
    @mdkhaledhossain996 Год назад

    this is just mindblowing, keep creating content like this, you will reach to million subscriber within no time

  • @opinions8731
    @opinions8731 Год назад

    Damn, I recognised Brians' voice from CS50AI. Respect for your joy of teaching man!!

  • @TuanNX87
    @TuanNX87 2 года назад

    Please add more algorithms videos like this. Thanks!!

  • @rocket007
    @rocket007 Год назад

    Really cool stuff. I am also happy about the snippet code algorithm at the end

  • @maxdemian6312
    @maxdemian6312 2 года назад

    The best video on RUclips on this subject

  • @minhlaburninghihi5627
    @minhlaburninghihi5627 3 года назад +19

    Coolest video on Dijkstra's ever. So easy to understand, thank you so much.

  • @df_iulia_estera
    @df_iulia_estera 2 года назад

    Very useful! Thank you very much for doing this video :D

  • @JamesCheng999
    @JamesCheng999 2 месяца назад

    Great video, very intuitive and help me a lot!