How Do You Calculate a Minimum Spanning Tree?

Sdílet
Vložit
  • čas přidán 19. 06. 2024
  • A story based on Kruskal's Algorithm
    ***
    This video is part of a project I worked on in graduate school for Professor Karen Brennan's beautiful course T550: Designing for Learning by Creating. Spanning Tree is now 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.

Komentáře • 40

  • @mahmoudalsayed1138
    @mahmoudalsayed1138 Před 6 měsíci +16

    Channel name checks out, I have never imagined I would say that in CZcams.
    Really great explanation.

  • @aliyuumargumel7869
    @aliyuumargumel7869 Před 4 měsíci +1

    Wow! Using real life example is the best teaching strategy.
    Thank you very much.

  • @johetajava
    @johetajava Před rokem +24

    You are a very good teacher, thank you for the video!

  • @antonstarostin4876
    @antonstarostin4876 Před 2 lety +7

    Great explanation video! Thank you!

  • @tachikoman9462
    @tachikoman9462 Před rokem +3

    OMG the explanation is sooooo clear!

  • @ghostfjdgcsusvsgsj
    @ghostfjdgcsusvsgsj Před rokem +3

    Thank you Brian!

  • @mkd0x
    @mkd0x Před 3 lety +2

    Thanks great video

  • @UnyimeUdoh-ny3lp
    @UnyimeUdoh-ny3lp Před 5 měsíci +1

    This explanation is just too cool 😎😎😎😎

  • @aidendelgado14
    @aidendelgado14 Před měsícem

    fire vid keep posting, spanning tree!

  • @granrey
    @granrey Před rokem +4

    I would like to see a variance of this video adding removing snow on each house and man power on each not being necesarily the same and comencing from a particular house.

  • @user-uy1sl4sk3f
    @user-uy1sl4sk3f Před 4 měsíci

    Thanks!

  • @diwasmainali1
    @diwasmainali1 Před 3 měsíci

    Greatest video ever

  • @AX-sq5vm
    @AX-sq5vm Před rokem +3

    tnx now i got the proof

  • @ultragamer969
    @ultragamer969 Před rokem +6

    this is like when the main protagonist says the name of the movie

  • @qwarlockz8017
    @qwarlockz8017 Před 2 lety +35

    This sounds so much like a variation of Dijkstra... am I wrong?

    • @xiangli9588
      @xiangli9588 Před 2 lety +19

      yes, you are wrong.

    • @qwarlockz8017
      @qwarlockz8017 Před 2 lety +90

      @@xiangli9588 thanks for the clarity and info packed response.

    • @xiangli9588
      @xiangli9588 Před 2 lety +6

      @@qwarlockz8017 but prim's algorithm is very similar to dijkstra

    • @1dan1609
      @1dan1609 Před rokem +19

      They are quite different. Kruskal's algorithm is used to find the minimum cost spanning tree, as depicted in the video, but Dijkstra is used in path finding from a given node in a graph, such that the result you get from dijkstra is the minimum distance and path required to reach all other nodes from a particular node.

    • @MartinHansenSkjelvareid
      @MartinHansenSkjelvareid Před 7 měsíci

      They are similar in that the greedy or locally optimum solution ends up yielding the globally optimum solution. They are also similar in that they add/follow the cheapest edge of all valid choices in each iteration.

  • @Randy14512
    @Randy14512 Před rokem +3

    Wouldn't a way to ensure maximum efficiency be first to check if any nodes only have one edge and if so connect those edges first thefore removing that edge from any future comparisons and lowering the number of connections needed to reach n-1 nodes once you start the algorithm?

    • @schoepp9966
      @schoepp9966 Před rokem +9

      Not from an algorithmical standpoint. Since you'll need to account for those specific roads either way the only difference you introduce is when you account for them. And since you need to look them up separatly in your version you will need to look at all houses first to check if they have one connection. So you'll check houses which don't have only one connection in this step and then once again when you check them for the minimal weight path there.

    • @Ant3_14
      @Ant3_14 Před rokem +1

      From conceptual perspective it's useful to reduce problem

  • @diegoortega2374
    @diegoortega2374 Před 8 měsíci +2

    Excuse me broher, but I didn't get the cut property. If you take the 3-weight road and then the 6-weigth road, you will end up needing 19 volunteers rather than 18. But you mention that according to this property, you will end up still with a subset of a minimal spannin tree. Could you explain me further please?

    • @Bardomp
      @Bardomp Před měsícem +1

      Look at minute 9:00 to 9:32

  • @blacklight683
    @blacklight683 Před rokem +8

    This guy is fr trying to convince me that 6

    • @Bardomp
      @Bardomp Před měsícem +1

      Look at min 9:00 to 9:31

  • @parheliaa
    @parheliaa Před 11 měsíci

    The more interesting example would be when some non-direct roads are optimal, instead of point-to-point connections.

  • @EmergencyTemporalShift

    Wait, do the roads need to be cleared for people to travel to the blocked roads?

    • @catprog
      @catprog Před rokem

      Yes.
      They start clearing the road they can get to before getting to the others.

  • @hariharanramamurthy9946
    @hariharanramamurthy9946 Před 2 lety +1

    How to practice?

  • @user-sl6gn1ss8p
    @user-sl6gn1ss8p Před rokem +6

    what if two edges have the same weight?

    • @ferusskywalker9167
      @ferusskywalker9167 Před rokem +3

      You go with both! Unless one of them creates a loop, then you skip it. If one would create a loop if the other is chosen, either is fine
      A loop is a path that starts and ends from the same place, ie the path 4-2-1 in the diagram in the video

    • @user-sl6gn1ss8p
      @user-sl6gn1ss8p Před rokem +5

      @@ferusskywalker9167 oh, makes sense, going with both is kind of the same as going with one and then the other, in no specific order, and if taking both makes a loop, than taking either has the same effect on the total connections. Thanks.

  • @darkfrei2
    @darkfrei2 Před rokem +2

    1. Connect a house to the other.
    2. Take any two houses and connect them if one and only one has not connected.
    3. Repeat 2.

  • @novmoon5760
    @novmoon5760 Před 2 lety +3

    Got lost

  • @UnyimeUdoh-ny3lp
    @UnyimeUdoh-ny3lp Před 5 měsíci

    This explanation is just too cool 😎😎😎😎