Distinct Edge Weights
Learn about the minimum spanning trees problem with distinct edge weights and its solution using various algorithms.
We'll cover the following
Suppose we are given a connected, undirected, weighted graph. This is a graph together with a function that assigns a real weight to each edge , which may be positive, negative, or zero. This chapter describes several algorithms to find the minimum spanning tree of , that is, the spanning tree T that minimizes the function
Distinct edge weights
An annoying subtlety in the problem statement is that weighted graphs can have more than one spanning tree with the same minimum weight; in particular, if every edge in has weight , then every spanning tree of is a minimum spanning tree, with weight . This ambiguity complicates the development of our algorithms; everything would be much simpler if we could simply assume that minimum spanning trees are unique.
Create a free account to access the full course.
By signing up, you agree to Educative's Terms of Service and Privacy Policy