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. 😄
@sanjarcode6 ай бұрын
but space in eager is V, so definitely better.
@ikechinwankwo79936 күн бұрын
Thanks I have been so confused about this as well!
@Barabara1003 жыл бұрын
The quality of the videos is awesome...
@Chichichifan10 ай бұрын
Thank for your video !!! It hlep me lot!!!
@abhijit-sarkar Жыл бұрын
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.
@ghostfjdgcsusvsgsj Жыл бұрын
excellent explanation like always
@halyph5 жыл бұрын
hello William, I like your visualization, looks cool ! Do you use something like PowerPoint for graph drawing ?
@WilliamFiset-videos5 жыл бұрын
Just Keynote, nothing too fancy :) Slides should be available through links in the description.
@amanbhatia74425 жыл бұрын
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-videos5 жыл бұрын
Hi Aman, thanks for the ideas. I'm tackling CS topics one at a time In hopes of covering as much ground as possible.
@amanbhatia74425 жыл бұрын
@@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.
@DavidDLee7 ай бұрын
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.
@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 Жыл бұрын
Even if all the weights are the same Prims will find a valid MST
@antoine25715 ай бұрын
If you want to find the MST of an unweighted graph, just DFS.
@sepehrkhodadadi94033 жыл бұрын
Spectacular 😍
@kunal_chand5 жыл бұрын
Amazing. Big fan !!!
@matts89114 жыл бұрын
incredible
@Esthicodes3 жыл бұрын
Hello, William, is MST algorithm related to AI?
@prasadborse2161Ай бұрын
So its basically the bellman ford algorithm
@marvelfan54444 жыл бұрын
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
@WilliamFiset-videos4 жыл бұрын
Ohh I think you're right! Will add them later today