Affiliation:
1. St. Cloud State University, MN, USA
Abstract
Given a connected, weighted, undirected graph
G
and a bound
D
, the bounded diameter minimum spanning tree problem seeks a spanning tree on
G
of minimum weight among the trees in which no path between two vertices contains more than
D
edges. In Prim's algorithm, the diameter of the growing spanning tree can always be known, so it is a good starting point from which to develop greedy heuristics for the bounded diameter problem. Abdalla, Deo, and Gupta described such an algorithm. It imitates Prim's algorithm but avoids edges whose inclusion in the spanning tree would violate the diameter bound. Running the algorithm from one start vertex requires time that is
O
(
n
3
).
A modification of this approach uses the start vertex as the center of the spanning tree (if
D
is even) or as one of the two center vertices (if
D
is odd). This yields a simpler algorithm whose time is
O
(
n
2
). A further modification chooses each next vertex at random rather than greedily, though it still connects each vertex to the growing tree with the lowest-weight feasible edge. On Euclidean problem instances with small diameter bounds, the randomized heuristic is superior to the two fully greedy algorithms, though its advantage fades as the diameter bound grows. On instances whose edge weights have been chosen at random, the fully greedy algorithms outperform the randomized heuristic.
Publisher
Association for Computing Machinery (ACM)
Subject
Theoretical Computer Science
Cited by
8 articles.
订阅此论文施引文献
订阅此论文施引文献,注册后可以免费订阅5篇论文的施引文献,订阅后可以查看论文全部施引文献