The Minimum Spanning Tree Problem

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

We discuss the minimum spanning problem in the context of undirected graphs. The same problem can be discussed for directed graphs but in that case it is referred to as the Optimal Branching Problem.

The Problem

Given an undirected graph G=(V, E) and a positive or negative cost ce for each edge e ∈ E, find the minimum cost spanning tree T ⊆ E (MST).

Algorithms

The minimum spanning tree problem is solved by greedy algorithms:

Prim's Algorithm

Prim's Algorithm

Kruskal's Algorithm

Kruskal's Algorithm