Definitions for "Minimum Spanning Tree" Add To Word List
Login or Register  | Word Lists | Search History

a spanning tree, but has weights or lengths associated with the edges, and the total weight of the tree (the sum of the weights of its edges) is at a minimum
Helpful?           0
a spanning tree T such that is minimal
Helpful?           0
a tree containing each vertex in the graph such that the sum of the edges' weights is minimum
Helpful?           0
a tree formed from a subset of the edges in a given undirected graph
Helpful?           0
(n.) a spanning tree with the smallest possible weight among all spanning trees for a given graph.
Helpful?           0
Minimum Spanning Tree
Helpful?           0
(MST) A tree in a weighted graph that contains all of the graph's vertices, where the sum of the weights along the edges is minimal.
Helpful?           0
Given a connected, undirected graph, a spanning tree of that graph is a subgraph which is a tree and connects all the vertices together. A single graph can have many different spanning trees. We can also assign a weight to each edge, which is a number representing how unfavorable it is, and use this to assign a weight to a spanning tree by computing the sum of the weights of the edges in that spanning tree.
Helpful?           0