Algorithm for minimum diameter spanning tree
Given a undirected and connected graph G, find a spanning tree whose diameter is the minimum. singhsumit linked the relevant paper by Hassin and Tamir , entitled "On the minimum diameter spanning tree problem", but his answer is currently deleted. The main idea from the paper is that finding a minimum diameter spanning tree in an undirected graph can be accomplished by finding the "absolute 1-center" of the graph and returning a shortest path tree rooted there. The absolute 1-center is the point, either on a vertex or an edge, from which the distance to the furthest vertex is minimum. This can