Eager Prim's Minimum Spanning Tree Algorithm | Graph Theory

Поділитися
Вставка
  • Опубліковано 12 чер 2019
  • Prim's Minimum Spanning Tree (MST) Algorithm
    Algorithms repository:
    github.com/williamfiset/algor...
    Video slides:
    github.com/williamfiset/Algor...
    Indexed priority queue data structure:
    • Indexed Priority Queue...
    Previous video (lazy Prim's): • Prim's Minimum Spannin...
    Next video (source code video): • Video
    ===================================
    Practicing for interviews? I have used, and recommend `Cracking the Coding Interview` which got me a job at Google. Link on Amazon: amzn.to/3cvMof5
    A lot of the content on this channel is inspired by the book `Competitive Programming` by Steven Halim which I frequently use as a resource and reference. Link on Amazon: amzn.to/3wC2nix

КОМЕНТАРІ • 20

  • @jamesbon68
    @jamesbon68 2 роки тому +9

    Great video! I came over from the Lazy Prim's video and just want to share that O(ElogE) is actually equals to O(ElogV).
    A complete graph can have V(V - 1)/2 edges. Representing this in big O notation is O(V^2).
    So O(ElogE) = O(ElogV^2) = O(E(2logV)) = O(ElogV).
    The eager method is definitely faster but the time complexity is actually the same. 😄

  • @erichsia9929
    @erichsia9929 3 роки тому +3

    The quality of the videos is awesome...

  • @Chichichifan
    @Chichichifan 4 місяці тому +1

    Thank for your video !!! It hlep me lot!!!

  • @ghostfjdgcsusvsgsj
    @ghostfjdgcsusvsgsj Рік тому

    excellent explanation like always

  • @halyph
    @halyph 4 роки тому +9

    hello William, I like your visualization, looks cool ! Do you use something like PowerPoint for graph drawing ?

    • @WilliamFiset-videos
      @WilliamFiset-videos  4 роки тому +6

      Just Keynote, nothing too fancy :) Slides should be available through links in the description.

  • @DavidDLee
    @DavidDLee Місяць тому

    None of C++ STL, Java Collections and Python Collections have Indexed Priority Queue.
    Golang has a 'Fix' method, which allows updating a value, but it does not have an index function to find the value and it's not obvious how to find items after a Fix call, which takes an index as input.

  • @sepehrkhodadadi9403
    @sepehrkhodadadi9403 3 роки тому

    Spectacular 😍

  • @abhijit-sarkar
    @abhijit-sarkar 6 місяців тому

    4:25 - "While the IPQ is not empty and a MST has not been formed" - If the IPQ holds no more than V entries, it is not possible for it to be non-empty but a MST has been formed. By definition, the MST includes all the vertices in the graph, so, in order to include all vertices, the IPQ must be completely drained.

  • @amanbhatia7442
    @amanbhatia7442 5 років тому +1

    Hi William, I really enjoyed your Data Structures beginning to advanced series. Gave me a refresher and also a clear understanding of using those Data structures. Will you be doing a structured series for Algorithms(Beginner to advanced) just like the data structures one? Also could you please also make a video on what are the current interview trends at companies like google,microsoft,amazon and facebook. What is expected of a grad student to know, when they apply for an internship?

    • @WilliamFiset-videos
      @WilliamFiset-videos  5 років тому +3

      Hi Aman, thanks for the ideas. I'm tackling CS topics one at a time In hopes of covering as much ground as possible.

    • @amanbhatia7442
      @amanbhatia7442 5 років тому

      @@WilliamFiset-videos Looking forward to your videos William. Data structures series was truly excellent. Now I'm moving on to Algorithms, referring CLRS and your videos for those.

  • @kunal_chand
    @kunal_chand 5 років тому +2

    Amazing.
    Big fan !!!

  • @matts8911
    @matts8911 4 роки тому

    incredible

  • @deepakganesh811
    @deepakganesh811 Рік тому

    Is there a way to use Prim's like algorithm for an unweighted graph? Since, comparing edge costs in PQ might not make sense when the weights are all same. (The context is the case of using Manhattan distance to calculate edge costs between neighbouring nodes in a map with grids of cells)

    • @WilliamFiset-videos
      @WilliamFiset-videos  Рік тому +1

      Even if all the weights are the same Prims will find a valid MST

  • @marvelfan5444
    @marvelfan5444 4 роки тому +1

    Hey William, great video! Would you mind adding both the Prim's MST to the Udemy Graph theory course please. They're not on there

  • @Esthicodes
    @Esthicodes 3 роки тому

    Hello, William, is MST algorithm related to AI?