Kinetic minimum spanning tree

From HandWiki
Short description: Kinetic data structure


A kinetic minimum spanning tree is a kinetic data structure that maintains the minimum spanning tree (MST) of a graph whose edge weights are changing as a continuous function of time.

General case

The most efficient known data structure for the general case uses a kinetic sorted list to store the edge weights, and a standard MST algorithm to compute the MST given the sorted edge weights. This data structure must process [math]\displaystyle{ O(n^2) }[/math] events, developing a more efficient data structure remains an open problem.[1]

H-minor-free graphs

Agarwal et al. developed a data structure that maintains the MST for a graph belonging to a minor closed family. It uses the idea of a "swap", calculating the amount by which the weight of the MST would increase if some edge in the tree e was replaced by an edge f outside the tree such that the circle induced by f in the tree contains e. Maintaining the tree is then equivalent to finding and swapping the next pair for which this quantity becomes negative. This data structure considers the dual view of the graph, and then divides based on Frederickson's restricted partitions [2] to make this efficient. It results in a total run time [math]\displaystyle{ O(pn^{\frac{1}{2}}\log^{\frac{3}{2}}n) }[/math] if [math]\displaystyle{ p }[/math] insertions or deletions are made, or [math]\displaystyle{ O(n^{\frac{19}{12}}\log^{\frac{3}{2}}n) }[/math] if only weight changes are allowed. These deterministic bounds are slightly improved if randomization is allowed.

References

  1. Demaine, Erik D. MIT 6.851 Advanced Data Structures, lecture video.
  2. Frederickson, G. N. (1997). "Ambivalent data structures for dynamic 2-edge-connectivity and k smallest spanning trees". SIAM Journal on Computing 26 (2): 484–538. doi:10.1137/s0097539792226825. https://docs.lib.purdue.edu/cgi/viewcontent.cgi?article=1888&context=cstech. 

Further reading

Agarwal, Pankaj; Eppstein, David; Guibas, Leonidas J.; Henzinger, Monika R. (1998). "Parametric and Kinetic Minimum Spanning Trees". FOCS. http://www.ics.uci.edu/~eppstein/pubs/AgaEppGui-FOCS-98.pdf. Retrieved May 19, 2012.