A* (A Star) Search Algorithm - Computerphile

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 เม.ย. 2024
  • Improving on Dijkstra, A* takes into account the direction of your goal. Dr Mike Pound explains.
    Correction: At 8min 38secs 'D' should, of course, be 14 not 12. This does not change the result.
    Dijkstra's Algorithm: • Dijkstra's Algorithm -...
    How GPS Works: • Satellite Navigation -...
    / computerphile
    / computer_phile
    This video was filmed and edited by Sean Riley.
    Computer Science at the University of Nottingham: bit.ly/nottscomputer
    Computerphile is a sister project to Brady Haran's Numberphile. More at www.bradyharan.com

ความคิดเห็น • 675

  • @user-ob8ww5cf7s
    @user-ob8ww5cf7s 4 ปีที่แล้ว +326

    8:41 "You know what? I'm just going to leave the lids off"
    8:50 *Puts lid back on*

  • @undead890
    @undead890 7 ปีที่แล้ว +155

    I have actually wanted Computerphile to talk about A* for a long time. It's so fascinating how it works.

    • @chrisdrew1768
      @chrisdrew1768 7 ปีที่แล้ว +15

      I love how simple an improvememt A* is over Djikstra

    • @mrben9058
      @mrben9058 7 ปีที่แล้ว +9

      In addition, once you got A*, you can recreate Dijkstra by setting all heuristics to the same value.

    • @chrisdrew1768
      @chrisdrew1768 7 ปีที่แล้ว

      Benjamin Collet bruh

    • @chillbro1010
      @chillbro1010 7 ปีที่แล้ว

      To a non-technical person like me, the simple explanation looks like Double Djikstra, one from each end.
      The measure of distance is basically giving a weight to the roads from the end state, as in making it choose things based on how close it is to the finish.
      --
      The only problem I see is you can't do things "as the crow flies" because that might put you on the other side of a river because its so close, while a bridge across the river is a long way away.
      Basically, in some instances it would follow to the bottom of a "cup", fill the entire "cup" trying to access nodes on the other side simply because the nodes are close, before spilling over the edges, where a regular djikstra might not go into the cup, and if it does it would quickly "drop" entire sections of the cup for being too "far/hard/slow"
      I guess it depends on the strength of the "closeness" but it seems like a single setting doesn't account for concave search spaces.

    • @StreamlineDeet
      @StreamlineDeet 7 ปีที่แล้ว

      (Almost) any cup that would be filled up by A* would also be filled up by Djikstra's. Remember, A* is still factoring in the distance travelled to get to a given node, so any path that is extremely long will be ignored, unless it brings it substantially closer to the destination. Meanwhile, Djikstra's would check out every node in the cup the moment those paths are shorter than the path it is taking around the cup.

  • @bolerie
    @bolerie 7 ปีที่แล้ว +870

    Prefering to call a list a "data structure" is the sign of a true programmer

    • @sumitmomin5753
      @sumitmomin5753 5 ปีที่แล้ว +10

      Why ??

    • @hopko7579
      @hopko7579 5 ปีที่แล้ว +40

      @@sumitmomin5753 If I had to guess, abstraction?

    • @sumitmomin5753
      @sumitmomin5753 5 ปีที่แล้ว +3

      @@hopko7579 wat abstraction has 2 do wid it ?

    • @TurboWindex
      @TurboWindex 5 ปีที่แล้ว +91

      @@sumitmomin5753 IMO, it is because he's writing pseudocode so instead of using one particular data structure type (Vector, List, Map, etc ) and confuse anyone with "technical" programming terms, he's just saying "data structure" !

    • @lucaspeters-murphy2770
      @lucaspeters-murphy2770 5 ปีที่แล้ว +5

      @@TurboWindex I mean, technically the only example where Dijkstra/A* is possible is a weighted graph.

  • @jedigecko06
    @jedigecko06 6 ปีที่แล้ว +655

    Books on the shelf...
    _Security Engineering, 2nd Edition._ Ross Anderson;
    _Secrets and Lies._ Bruce Schneier;
    _The Elements of Statistical Learning._ Trevor Hastie, Robert Tibshirani, Jerome Friedman;
    _C++ The Complete Reference, 4th Edition._ Herb Schildt;
    _Cryptography and Network Security: Principles and Practice, 2nd Edition._ William Stallings;
    _Computers and Intractability; a guide to the theory of NP-Completeness._ David S. Johnson, Michael Garey;
    _Computer Security, 3rd Edition._ Dieter Gollmann;
    _Hacking: The Art of Exploitation._ Jon Erickson;
    _Database Systems: A Practical Approach to Design, Implementation, and Management, 5th Edition._ Carolyn E. Begg, Thomas M. Connolly;
    _The Manga Guide to Databases._ Mana Takahashi, Shoko Azuma; /* Yes! Really! */
    _A Brief Guide to Cloud Computing._ Christopher Barnatt;
    _Pro WPF in C# 2010._ Matthew MacDonald; /* Ooh! Companion ebook available! */
    /*
    * Whew! For any simple task, take your initial runtime estimate and double it.
    */

    • @williamwambua7710
      @williamwambua7710 5 ปีที่แล้ว +11

      Thanks i needed this

    • @jorandebraekeleer7557
      @jorandebraekeleer7557 5 ปีที่แล้ว +4

      @@williamwambua7710 Sarcasm?

    • @mustafamirza6807
      @mustafamirza6807 4 ปีที่แล้ว +1

      Oh Great

    • @evanl5299
      @evanl5299 4 ปีที่แล้ว +3

      FYI - Herb Schildt was the multi-keyboard in the rock band Starcastle.

    • @novikovPrinciple
      @novikovPrinciple 3 ปีที่แล้ว +5

      The... I'm sorry, _The Manga Guide to_ *what* ?

  • @KarnKaul
    @KarnKaul 7 ปีที่แล้ว +82

    Extremely well done run-through!
    Dr. Pound is right: A* is incredibly fast; so much so that we use it generously in path-finding (in gameplay engineering). That's a subroutine that multiple NPC instances are executing, 60 times a second, along with all the other stuff (that's a LOT more intensive).

    • @jetardeshna3449
      @jetardeshna3449 6 หลายเดือนก่อน

      Damn that's reallly efficient

  • @scabbynack
    @scabbynack 7 ปีที่แล้ว +398

    Dr. Pound is great in his videos. He has a great on camera presentation and disposition. Thanks for these examples and explanations!

  • @Jacoomo
    @Jacoomo 7 ปีที่แล้ว +436

    "Let's move the books to be in the frame"

  • @fablungo
    @fablungo 7 ปีที่แล้ว +152

    I think something important to note which was very only briefly suggested is that if your distance-to-goal heuristic always underestimates you will always find the shortest path, but if not then the path you get may not be the shortest (which for some problems may be suitable).
    If you underestimate too much then the benefits of A* diminish and you'll explore more and more of the graph. Additionally, Dijkstra is a generalisation of A* where the distance-to-goal is always underestimated as 0.

    • @ShaojunZhao
      @ShaojunZhao 5 ปีที่แล้ว +37

      I think it is the other way around: A* is a generalization of Dijkstra's algorithm, as Dijkstra's algorithm assumes the heuristic function to be zero.

    • @PHHE1
      @PHHE1 2 ปีที่แล้ว +2

      Actually we saw an example for that in the video. We finished so fast in the end because the final distance was actually shorter than we expected only a step before. The heuristic being a overestimating one wouldn't have guaranteed to find the optimal path if there would have been a shorter ones in the right branch but it let us finish very fast

    • @redy55
      @redy55 2 ปีที่แล้ว

      A* has its uses. You can program edge weights of ones you want your algorithm to avoid to be positive infinity or something if you want to be sure. Also, the euclidian distance based heuristic you pretty much only use when you have a 2 dimensional map aside from nodes on it. So there cant be a realistic situation, when the path where heuristic is bigger is actually shorter. If you are measuring weight on a different parameter (like, how many shops does the town have, and thats your criteria, not difficulies on the road itself) then you should use another heuristic function or another algorithm altogether :)

  • @garethdean6382
    @garethdean6382 7 ปีที่แล้ว +83

    This is not to be confused with the Sagittarius A* search algorithm, used often in astronomical science. *That* method simply involves shoving everything together in one big pile so whatever you need is nearby.

  • @DontTalkShite
    @DontTalkShite 7 ปีที่แล้ว +1378

    This guy is brilliant.

    • @docwhogr
      @docwhogr 7 ปีที่แล้ว +9

      Adam Smith. stop trolling

    • @DontTalkShite
      @DontTalkShite 7 ปีที่แล้ว +47

      I wasn't

    • @CxC2007
      @CxC2007 7 ปีที่แล้ว +21

      Adam Smith is not brilliant. he did no invented this. he just study computer science, and he knows thing you don't.

    • @meinbherpieg4723
      @meinbherpieg4723 7 ปีที่แล้ว +272

      You don't have to invent something to be brilliant. Just being able to understand, accurately recall, and be able to explain this material in a way that enables other people - especially people who don't have a formal background in this material - to understand it is brilliant in and of itself.

    • @DontTalkShite
      @DontTalkShite 7 ปีที่แล้ว +168

      I just meant I really enjoy when he's hosting. He's brilliant at explaining things.

  • @johnsmithee6660
    @johnsmithee6660 5 ปีที่แล้ว +257

    There's a slight mistake - the distance from S-B-D is 2+4 = 6 and the D is 8 inches away from E, so the total for D is 6+8 = 14, not 12

    • @user-sv4nq8vq1s
      @user-sv4nq8vq1s 5 ปีที่แล้ว +1

      Its fixed

    • @ProBarokis
      @ProBarokis 3 ปีที่แล้ว +8

      @@null3081 how bro

    • @itsCh4rl1e
      @itsCh4rl1e 7 หลายเดือนก่อน +1

      the description fella@@ProBarokis

  • @omkar_sawant
    @omkar_sawant 6 ปีที่แล้ว +17

    I really appreciate Dr Mike taking the time out to not only host these videos but also make all the materials necessary for them. Being a professor must be definitely a busy job and all this must definitely take quite some effort. Appreciated!

  • @philipjohansson3949
    @philipjohansson3949 5 ปีที่แล้ว +17

    Rest in peace, Dr. Nils Nilsson, coinventor of A*, 1933-2019

  • @KarlFFF
    @KarlFFF 7 ปีที่แล้ว +230

    8:10 I like to live dangerously, I always shuffle my lists before storing!

    • @rafaelplugge3214
      @rafaelplugge3214 6 ปีที่แล้ว +7

      or even worse
      divide by 0!
      :O

    • @NZAnimeManga
      @NZAnimeManga 6 ปีที่แล้ว +24

      dividing by "0!"? - no problem ;)

    • @bfs7668
      @bfs7668 6 ปีที่แล้ว +4

      Dennis Fluttershy soooo divide by one
      Doable

    • @parktamaroon226
      @parktamaroon226 5 ปีที่แล้ว

      hahah... did you write “sorting” out of sequence?

    • @moellerdk93
      @moellerdk93 5 ปีที่แล้ว +2

      0! = 1 - google it

  • @silaslancashire2879
    @silaslancashire2879 7 ปีที่แล้ว +499

    "sheep 'n' stuff"

    • @EgoShredder
      @EgoShredder 7 ปีที่แล้ว +10

      Sheep and Sheeple and Steeples! :-D

  • @IkonAndDiva690
    @IkonAndDiva690 5 ปีที่แล้ว +8

    I've been watching your videos over the last few days, in order to solve a Pacman algorithm of Ghosts taking the shortest route, and found your explanations and content to be very educational and easy to follow. Many thanks and keep up the great work! Fingers crossed that I can now implement my version of A* on an adjacent list of nodes I've created for the maze...

  • @tabidots
    @tabidots 2 ปีที่แล้ว +8

    The use of physical cards really helped make this explanation of the algorithm really clear. I was really struggling to follow purely written explanations, pseudocode, and actual code, because while I can code, I don't have a formal CS background.

    • @Sindoku
      @Sindoku 3 หลายเดือนก่อน

      You not having a formal CS background has nothing to do with struggling with algos like this. That is simply b/c you aren't used to solving those types of problems, and 99% of universities do no prepare students adequately in DSA either, so most of them are struggling too.

  • @mrBlagstock
    @mrBlagstock 7 ปีที่แล้ว +1

    Dr Mike Pound is fab - so watchable. A TH-cam star is born. Knows his stuff and a great explainer.

  • @friewire
    @friewire 7 ปีที่แล้ว +35

    Exactly like having a smart friend in class explaining it to you! Amazing

  • @frederickm9823
    @frederickm9823 7 ปีที่แล้ว

    Man, I could listen to this guy for ages. His way to present his topics is just amazing :)

  • @aaronsalenga3221
    @aaronsalenga3221 3 ปีที่แล้ว +18

    Never in my life did I think that I'd be cracking up at a video about an A* Search Algorithm implementation. An entertaining video for sure 😂
    I have a project due in less than 24 hours where we need to code A* from scratch, so thanks for reducing my stress and while teaching me this algorithm. I feel a lot better now.

    • @justinernest2363
      @justinernest2363 3 หลายเดือนก่อน

      Was it part of a snake game? Like you know the snake searches for the apple etc?

  • @ChadNierenhausen
    @ChadNierenhausen 7 ปีที่แล้ว

    Dr. Mike is one of the best presenters on this channel! Thanks for another fun one.

  • @amrsaber5457
    @amrsaber5457 7 ปีที่แล้ว +144

    "meh, finished data structure over here" 😂😂

  • @brunoalves-pg9eo
    @brunoalves-pg9eo 7 ปีที่แล้ว +292

    I had an advanced algorithm exam 2 weeks ago and this algorithm was part of the test, I passed but never understood the algorithm. Until now.
    Nice video

    • @tengkuizdihar
      @tengkuizdihar 6 ปีที่แล้ว +16

      bruno alves I too like to live dangerously.

    • @davidson2727what
      @davidson2727what 6 ปีที่แล้ว +4

      Yeah this guy saved me on dijkstra. Pre exam thankfully.

    • @aurelia8028
      @aurelia8028 4 ปีที่แล้ว +1

      Should you have passed then?

    • @georgeborsa5346
      @georgeborsa5346 3 ปีที่แล้ว +7

      @@aurelia8028 Yes, he should have passed. Most of the time those exams just test your memory. At that time he was only able to reproduce his college's explanation of the algorithm, after this video he's able to explain it with his own words (and maybe even implement it).

  • @christaylor5613
    @christaylor5613 2 ปีที่แล้ว +1

    Great video, you've given me some great insights. The clever, subtle (and sometimes not so subtle) humor makes it all the better!

  • @smal7812
    @smal7812 3 ปีที่แล้ว +3

    My uni professor made this SO blurry - exact opposite of your explanation. Thanks a ton for restoring my interest in my major, kind sire.

  • @Clashkh22
    @Clashkh22 5 ปีที่แล้ว +10

    I'd just like to note that you, Dr. Pound, are the most likeable Computer Science professor I've ever come across.
    This is coming from a student of one of Germany's top MINT universities.

    • @Nadox15
      @Nadox15 5 ปีที่แล้ว +1

      Ich auf einer der besten Universitäten (bezogen auf Naturwissenschaftliche Studiengänge) als Informatik-Student im Master, wäre mal gespannt zu hören über welche Universität du spricht? :) Das wäre mir neu, dass "MINT" Universitäten die besten in Informatik seien. Aber hey go ahead :)

    • @Clashkh22
      @Clashkh22 5 ปีที่แล้ว

      @@Nadox15Fernuni Hagen natürlich, was denn sonst, du neunmalkluger Sitzpisser

    • @Nadox15
      @Nadox15 5 ปีที่แล้ว +1

      ​@@Clashkh22 hahahaha und du sagst, "one of the Germany's Top MINT Universities" wtf alter, von der habe ich noch nie gehört. Gute Unis sind, Tu-München, Humboldt-Universität zu Berlin oder auch Tu-Berlin. wat für Fernuni alter

    • @Clashkh22
      @Clashkh22 5 ปีที่แล้ว

      @@Nadox15 siehst auch den Wald vor lauter Bäumen nich, wa?

  • @xPROxSNIPExMW2xPOWER
    @xPROxSNIPExMW2xPOWER 7 ปีที่แล้ว +60

    This guy should just do all the videos tbh

  • @Mr123ichkomme
    @Mr123ichkomme 3 ปีที่แล้ว +1

    I am watching this channel for decades by now. But this is the first time, that i was looking for a video on a topic and this vid was suggested. I'm getting there..

  • @andreatoth9329
    @andreatoth9329 2 ปีที่แล้ว

    I'm so thankful for your video! I learned about A* in uni and watched multiple videos about it, but I didn't understand it fully until now. Your explanation is very clear, you helped me so much.

  • @glennzone12
    @glennzone12 7 ปีที่แล้ว +25

    1:55 On the bookshelf; "The Manga Guide to Databases"

  • @seelyw.4818
    @seelyw.4818 4 ปีที่แล้ว

    I like your unorthodox style of teaching. It's like a friend explains it to you. Thank you!

  • @glennchoi897
    @glennchoi897 ปีที่แล้ว

    Excellent explanation. I noticed D, and played it twice to make sure it is a mistake. And, then I read the description. Thank you for putting the video up.

  • @getvasued
    @getvasued 6 ปีที่แล้ว +2

    Amazing!
    No other video on A* will ever be needed :)

  • @hattrickster33
    @hattrickster33 4 ปีที่แล้ว +13

    One question I had was, how do we know we can stop when E is removed from the priority queue? The answer is that every element removed from the priority queue is guaranteed to have the most efficient way to get back to the element before it in the path back to the start node S. So basically, once E is removed from the priority queue, we know there is a path from S to E, and all elements removed so far are part of the shortest path, or the path that minimizes the total heuristic cost.

  • @thomasscanlan8624
    @thomasscanlan8624 5 ปีที่แล้ว

    this is the best explanation of this algorithm that I have found on youtube thus far! Excellent!

  • @hesgrant
    @hesgrant 7 ปีที่แล้ว

    Mike Pound is my favorite. What a brilliant communicator.

  • @tomburns5231
    @tomburns5231 7 ปีที่แล้ว

    Fantastic videos, as always, Computerphile. And thanks Mike, nicely summed up together with other videos.

  • @Raggaliamous
    @Raggaliamous 2 ปีที่แล้ว

    As someone with very little maths background, this video/ tutorial was just what I needed to get my heard around building a pathfinding algorithm.

  • @smartess
    @smartess 7 ปีที่แล้ว

    I worked with A* Algo years ago, learning it wasn't that simple, but this man make it so easy to understand, Thump up (y)

  • @MegaTheDarkdemon
    @MegaTheDarkdemon 3 ปีที่แล้ว

    This was one of the most enlightening and interesting ways to explain searching algorithm. Thank you. Subbed and liked!

  • @seanfy9399
    @seanfy9399 6 ปีที่แล้ว

    Never thought I could actually understand A*, BUT this video do make everything clear enough, you are brilliant, thank you!!!

  • @egg1645
    @egg1645 20 วันที่ผ่านมา

    Student here, thank you! This is a really clean explanation and you clearly really love A star :)

  • @generalzugs6017
    @generalzugs6017 7 ปีที่แล้ว +4

    Please, ask dr. Mike to explain more stuff. He's very good at it.

  • @kostyapesterew1068
    @kostyapesterew1068 7 ปีที่แล้ว +45

    why 'D' was 4+8=12?
    traveled distance is clearly 2+4=6
    so... 6+8=14?

    • @EscapeMCP
      @EscapeMCP 7 ปีที่แล้ว +1

      yup

    • @Rachio666
      @Rachio666 7 ปีที่แล้ว +4

      kostya pesterew that's correct. it should have been 14

    • @ThaerRazeq
      @ThaerRazeq 7 ปีที่แล้ว +2

      To be honest, I was confused too @8:20, it should have been 14.

    • @NiraExecuto
      @NiraExecuto 7 ปีที่แล้ว +18

      I wouldn't call that annoying, because from what I've seen, the people not as talented can get seriously confused if the teacher makes a mistake, so in pointing it out, you're probably doing at least some of them a favor.

    • @comrade1912
      @comrade1912 6 ปีที่แล้ว

      exactly.. and I was not able to concentrate after that point... :P

  • @diorcula
    @diorcula 5 ปีที่แล้ว +26

    He actually makes a mistake, writes down for: s->b->d:
    8+4 = 12.
    although the actual value was 6+8 = 14 for D...

  • @vinitvsankhe
    @vinitvsankhe 7 หลายเดือนก่อน +1

    One neat trick is to "prefer" one metric over another and use power notation to calculate overall heuristic. E.g. a node with distance 7 but weight 2, we added them as 7+2 = 9. But instead of that if we prefer shorter distance over smaller weight then weight should be the base raised to the power of distance.
    So this way we can choose easily between two nodes that would otherwise yield the same heuristic if we add them but with the new rule if one node is with weight of 2 and distance of 7 (2^7=128) and another has distance of 2 and weight of 7 (7^2 = 49) ... we chose the later as 49 < 128 because we preferred the one closer to the end node.
    Google maps often use this trick.

  • @russelllewis9215
    @russelllewis9215 3 ปีที่แล้ว +2

    Let me nitpick just a little...
    You're correct that A* terminates when the destination node gets to the front of the queue *if* the heuristic is guaranteed to be a lower bound on the actual path length. But in this video, the physical distance doesn't actually correlate with the path lengths, and so you cannot actually exclude the possibility that the shortest path to E might go through C, or some other not-yet-examined node.
    But nonetheless, I loved the video, and it was a great explanation of the algorithm. Thanks!

  • @Emanuel-oz1kw
    @Emanuel-oz1kw 6 หลายเดือนก่อน

    Great content and excellent editing!

  • @lerneninverschiedenenforme7513
    @lerneninverschiedenenforme7513 6 ปีที่แล้ว +3

    1st: '~ just adds a heuristic to dijktra' was the best statement!! Further, no usage of stupid unnecessary words like 'open list' and 'closed list'. Everythig nice and simple. Also, the animations help overcome handwriting. And the handwriting is there to keep the explaination realistic. 6 from 5 stars

  • @benjaminramsey4695
    @benjaminramsey4695 4 ปีที่แล้ว

    This video primarily, plus a couple other sites I looked up after, helped me implement pathfinding in my game! Thanks!

  • @iandavidson9761
    @iandavidson9761 6 ปีที่แล้ว +9

    That lean forward with the "imperial woo!" gave me a good chuckle. watching from the states.

  • @yukewang3164
    @yukewang3164 5 ปีที่แล้ว

    very vivid presentation of the graph algorithm helps me a lot to understand the process

  • @sarahebal4391
    @sarahebal4391 7 หลายเดือนก่อน

    well explained dr Pound, sir in my problem I need to determine a set of feasible paths to use in multi-path routing but the main issue is the cost of edges and nodes in the graph it has a quadratic relation to the flow which is unknown in the first place so how can I so how can solve it, please!

  • @eccentriccode3158
    @eccentriccode3158 2 ปีที่แล้ว +4

    You guys are saving cs students. Got an exam on A* and others soon so thanks (:

  • @rameshkumargovindaraju4504
    @rameshkumargovindaraju4504 ปีที่แล้ว

    brilliant. thank you for this lecture. So much better than what I had heard thus far.

  • @Anvilshock
    @Anvilshock 7 ปีที่แล้ว +157

    THIS JUST IN: POUND BACK, INCHES AHEAD, SHORTEST PATH TO BREXIT PACED

  • @user-uv4um4yd3w
    @user-uv4um4yd3w 4 ปีที่แล้ว

    great video!!!
    I came across a situation where checking the distances of all nodes to the target before starting the algorithm was a pretty hard task. So I recommend to measure the distance of the node to the target only when it need to be inserted in to the queue
    thank you!

  • @bluebee2431
    @bluebee2431 3 ปีที่แล้ว

    You sir, are hilarious and awesome! Just finding this channel and looking forward to much more!

  • @sparshpriyadarshi
    @sparshpriyadarshi 7 ปีที่แล้ว +4

    Was struggling with a bug in my implementation, the timing could not have been better. you made me see it ! Thanks !

  • @hcblue
    @hcblue 7 ปีที่แล้ว +2

    I love Dr Pound.

  • @madhabification
    @madhabification 4 ปีที่แล้ว

    His videos are absolutely awesome.

  • @SianaGearz
    @SianaGearz 2 ปีที่แล้ว +1

    I recall a car equipped with a satnav from the mid 90s, and it used a CD to store navigation data across all of Europe, with a slow and silent-spinning optical drive, probably 2x speed at best, maybe 1x. I imagine in my mind that it was equipped with a dinky little 68k processor, capable of addressing a total of 16MB, likely equipped with barely any memory at all, and it didn't take long at all to load the data or compute the path. Indeed it would do so in a couple of very audible optical drive head moves, just a handful. I imagine it would have to load just the local map around the start, a local map around the destination, and then just have all the routes between selected points precomputed on CD, at least one point per map sector, so it would need one lookup into a hash table on CD indexed by map start and end sectors to find the disk address of the route, and then it could fetch that route, and then augment and optimise the route with real start and destination points in mind, instead of precomputed ones, but it would only need to search local data at each end into account for that. This is how i imagine it being done. How wrong am i? How would such a system work in practice, what algorithms are involved at runtime?

  • @VidimusWolf
    @VidimusWolf 3 ปีที่แล้ว

    Why does he always sound and look like he is constantly on the verge of breaking out into an unstoppable laughter? Haha, Amazing explanations as always!

  • @user-wi3db6wu8d
    @user-wi3db6wu8d 4 ปีที่แล้ว

    Thank you so much for the very clear explanation of the algorithm !

  • @dragoncurveenthusiast
    @dragoncurveenthusiast 7 ปีที่แล้ว +21

    finished pack... finished stack... finished list?... finished data structure! :-D
    gotta love this guy!
    9:10

  • @HebaruSan
    @HebaruSan 7 ปีที่แล้ว

    Search from both ends at the same time and stop when the two searches meet. Instead of one search to depth N, now you have two searches to depth N/2. In a graph with many nodes and many connections, the number of nodes at each depth increases with the depth, so each search tree is less than half the size of the original, and the total number of nodes searched is reduced.

  • @tumultuousgamer
    @tumultuousgamer 2 ปีที่แล้ว

    Best explanation I found so far!! Thank you!

  • @dien2971
    @dien2971 4 ปีที่แล้ว

    I love the style of your explanation. Thank you!

    • @nba2493
      @nba2493 3 ปีที่แล้ว

      no-one cares :)

    • @dien2971
      @dien2971 3 ปีที่แล้ว

      @@nba2493 And now is no-two :)

  • @prashanth95r
    @prashanth95r 6 ปีที่แล้ว

    At 4:32, s, a and b are forming a triangle and not obeying the triangle inequality theorem, sb+ab < as

  • @Infaviored
    @Infaviored 2 ปีที่แล้ว +1

    Many thanks for the good video.
    However, I think you missed to highlight one thing:
    The heuristic *always underestimates* the distance.
    I saw people questioning why it can't be that the path through the right side is shorter when we did not calculate the cost.
    The actual shortest path is always longer than the heuristic distance. Here this lies in the nature of the problem, the euclidean distance (straight path) is always shorter than the lengths when driving zig-zag.

  • @usptact
    @usptact 5 ปีที่แล้ว

    Finally somebody explains what A* actually does! It was bit rushed but I managed to follow (usually I get lost).

  • @kebman
    @kebman ปีที่แล้ว

    This explanation is great in that it explains what the machine does. Meanwhile I also like the intuition given in polylog's video.

  • @LeoMRogers
    @LeoMRogers 7 ปีที่แล้ว +3

    I'd be interested in videos on clustering algorithms, I can see you've already done k-means, but how about some other options like density based clustering with dbscan or optics?

  • @samnub7912
    @samnub7912 7 ปีที่แล้ว

    Love this dude, quality content!

  • @diegowang9597
    @diegowang9597 2 ปีที่แล้ว

    For Dijkstra, you get the shortest path from start to every other node, regardless which end node you choose. But for A*, in order to use the heuristic, you need to specify an end node for the algorithm.

  • @totlyepic
    @totlyepic 7 ปีที่แล้ว +4

    It's interesting that you went with a relatively sparse graph for this. Most people introduce A* in the context of grid-like graphs.

    • @B0XMATTER
      @B0XMATTER 2 ปีที่แล้ว

      I suppose you don't really have a 256*256*256 grid to describe the basics of A* since what was described here technically works.

  • @tomWil245
    @tomWil245 ปีที่แล้ว

    Thanks!!! Extraordinary clear. Loved the heuristic device!

  • @Sindoku
    @Sindoku 3 หลายเดือนก่อน +1

    His calculation for "D" in A* was off. D was S + B + D (0 + 2 + 4) or 6, and it had a heuristic of 8, so that is 14. He wrote down 12 in black. Not a major deal breaker here obviously, but just pointing it out b/c that's what us programmers do :). Thanks so much for the video!

    • @Sindoku
      @Sindoku 3 หลายเดือนก่อน

      Nvm, they fixed it in the video description. Nice!

  • @Hyuts
    @Hyuts 5 ปีที่แล้ว

    I hope to understand this soon... Its so amazing

  • @hafizhamzahafeez7576
    @hafizhamzahafeez7576 6 ปีที่แล้ว

    Am I the only one who thinks there is a great resemblance between the looks of Toni Kroos and Dr. Mike Pound.
    Wonderful personality and amount of confidence.

  • @SuperNolane
    @SuperNolane 7 ปีที่แล้ว +25

    Important thing that was missed is that used heuristic must be less than cost of least path to node. Otherwise you can get wrong answer.

    • @rumfordc
      @rumfordc 7 ปีที่แล้ว +1

      he mentions that right before he starts using the tape measure

    • @SuperNolane
      @SuperNolane 7 ปีที่แล้ว +3

      He sad "for A* to work really well you have to have a consistent metric and you have to not overestimate of how far you've got to go". But it will not work at all if you have overestimating metric.

    • @rumfordc
      @rumfordc 7 ปีที่แล้ว

      won't it just return a less-than-optimal path?

    • @SuperNolane
      @SuperNolane 7 ปีที่แล้ว

      It will. But why to pick such intricate method to get wrong answer when you can just return random path?

    • @hendrikw4104
      @hendrikw4104 5 ปีที่แล้ว

      "not overestimating lengths" is called admissible. Every consistent heuristic is also admissible. Consistent means that h(n)

  • @sabriath
    @sabriath 7 ปีที่แล้ว

    I prefer double a* pathfinding....basically you have a start-to-finish on the queue (S:10:E for example) and a finish-to-start on the queue (E:10:S). You work the queue in the same manner, by expanding the smallest value, but you're finished when the one you are expanding connects with the second one in the queue.
    This helps immensely in situations of tree-like patterns, where the path from one to the other keeps splitting into multiple directions, while the reverse direction is pretty straightforward (think binary tree).

  • @abram_saleh
    @abram_saleh 7 ปีที่แล้ว

    just in time for my next project, thanks!

  • @peanut7945
    @peanut7945 หลายเดือนก่อน +1

    This new office episode looks great

  • @xeladas
    @xeladas 7 ปีที่แล้ว

    If I where to guess how satnavs get around the issue of combination explosion problem (or how I'd try to do it if suddenly asked to do it (not at all likely)) would be to store not just the "proper" road system but also a map of only motorways.
    The algorithm A*s (with euclidean distance to destination as the heuristic) until the destination or a motorway bubbles to the top, if you find your destination it's done, if it finds a motorway it saves that node, then runs A* on the destination, if it also hits a motorway it saves that node as well, then it goes to the motorway map and does the same thing with the two motorway nodes.
    Honestly it is probably much more complex, with more layers (one map has everything, the next ignores country roads, the next ignores B-roads, etc.), some system to go to a previous map level if maps don't connect, and may sample multiple nodes when going up just in case.

  • @deathhog
    @deathhog 3 ปีที่แล้ว

    As for the SatNav, it might just be a simple system of prioritization.
    Consider that the highest speed roads are highways.
    And they're usually as short a distance between cities as they can be. They're expensive.
    So, the computer will likely just give a very very low weight to those roads, and prune all the other side roads until you get to the closest hub city, and *then* activates the proper algorithm. This has the added benefit of encouraging motorists to use the best maintained roads to boot.

  • @mrben9058
    @mrben9058 7 ปีที่แล้ว

    Thanks for that video, I was waiting on A* almost since I subscribe! Can we expect to have a video on Jump Point Search one day?

  • @andreyrumming6842
    @andreyrumming6842 3 ปีที่แล้ว +1

    "You could come up with lots of interesting heuristics, not just euclidean distance"
    I know that he didn't strictly say this, but I totally wanna write a non-euclidean A* algorithm now!

  • @salmansaleh1
    @salmansaleh1 2 ปีที่แล้ว

    Excellent demonstration!

  • @garvagarwal4005
    @garvagarwal4005 5 ปีที่แล้ว +2

    I know this is an old video, but hopefully someone sees this. At the end, you suggested that there could be other, perhaps better heuristics than Euclidian distance for A*. Could you give a few examples of other such heuristics?

  • @thejoebegs
    @thejoebegs 5 ปีที่แล้ว

    These are the best. Thank you.

  • @kidpitch
    @kidpitch 7 ปีที่แล้ว

    Literally working on a homework that is coding this algorithm. Thanks for the tutorial

  • @C4rb0neum
    @C4rb0neum 7 ปีที่แล้ว +5

    I'm very close to having tears in my eyes from laughing when 'super sneaky' was introduced as 'not an official term you will find in the literature.' Brilliant side note.

  • @draco18s
    @draco18s 7 ปีที่แล้ว

    Speaking of interesting heuristics, it might be worth doing a pass through Jump Point Search, which is great for grid-based pathfinding that lets A-star expand even fewer nodes than it would normally. It would take a different example graph, though.

  • @ZeedijkMike
    @ZeedijkMike 7 ปีที่แล้ว

    You make me understand things 1st time I hear them.
    If only you had been a teacher when I went to school : - )

  • @Xappreviews
    @Xappreviews 7 ปีที่แล้ว

    Wow what a coincidence, I'll have an exam about artificial intelligence tomorrow, and it also will contain A* :) One interesting thing you did not mention is that A* is "optimally efficient", that is, in general there cannot be a better search algorithm than A*

  • @BlackJar72
    @BlackJar72 6 ปีที่แล้ว

    I found A* very useful in testing and fixing the passabiliy of procedurally generated rooms. A* proper hardly required any code, most of the code was setting up the graph and using the results.

  • @terrytwotoes3225
    @terrytwotoes3225 3 ปีที่แล้ว

    All this is done in mere seconds amazing

  • @jinbai4867
    @jinbai4867 7 หลายเดือนก่อน

    How to find a better heuristics is fun, you could try different ones. It is very interesting.