Search results for prims-algorithm

2 votes
2 answers
4
Can anyone help in solving the question 105 to 109.I don't have answer key I want to confirm my answer ...i will update my answer in the comments.
5 votes
3 answers
6
It may be the case that "Kruskal's Algorithm may not maintain connectivity while Prim's algorithm always does that" ?Any example which favours this ?
0 votes
2 answers
7
0 votes
1 answer
8
What is the time complexity of Prim algorithm without using min heap?
1 votes
0 answers
10
For a sparse graph $G=(V,E)$ where $|E|=\Theta (V)$ is the implementation of Prim’s algorithm with a Fibonacci heap asymptotically faster than the binary-heap implement...
2 votes
2 answers
13
3 votes
1 answer
15
Explain Prims AlgorithmAnalysis Of Time ComplexityHow does $\mathcal{O}(VlogV + ElogV)=\mathcal{O}(ElogV)$
1 votes
2 answers
17
Hello,I have doubt regarding prims algorithm1)should we choose the lowest cost edge and then implement algo further?2)Or we choose any vertex and then lowest cost edge of...
2 votes
2 answers
18
1 votes
0 answers
19
Assuming that the graph can contain repeated edge weights, we have a single tree at any instance when applying Prim's algorithm.Justify this statement.
1 votes
0 answers
20
First statement is False because complexity will be O(E2).I think the second statement is true? But not sure