Minimum Spanning Trees
1. What is incorrect about Kruskal’s algorithm?
2. In a graph having V vertices and E edges, what is the smallest possible edge count of a Minimum Spanning Tree?
3. How do we detect whether one edge(with V1 and V2 as vertices on both the ends) is a part of a cycle in the graph?
4. Which edge gets judged if it should or shouldn't be in MST after n iterations?
5. When do we add an edge to MST while running Kruskal's ?