InterviewSolution
Saved Bookmarks
| 1. |
What is the time complexity of Kruskal’s algorithm?(a) O(log V)(b) O(E log V)(c) O(E^2)(d) O(V log E)This question was addressed to me in a national level competition.This key question is from Minimum Spanning Tree in section Minimum Spanning Tree of Data Structures & Algorithms II |
|
Answer» Correct answer is (b) O(E LOG V) |
|