Tree Contractions and Evolutionary Trees
Ming-Yang Kao

TL;DR
This paper presents an efficient algorithm for finding the largest agreement subtree between two evolutionary trees, with complexity depending on the trees' maximum degree, improving computational feasibility for large trees.
Contribution
It introduces a new algorithm to determine the maximum size of agreement subtrees in two evolutionary trees, with optimized complexity bounds for bounded degree trees.
Findings
Algorithm runs in O(n log^2(n)) for trees with bounded degree d
For general d, algorithm runs in O(n d^2 log(d) log^2(n)) or O(n d sqrt(d) log^3(n))
Provides a near-optimal solution for agreement subtree size determination
Abstract
An evolutionary tree is a rooted tree where each internal vertex has at least two children and where the leaves are labeled with distinct symbols representing species. Evolutionary trees are useful for modeling the evolutionary history of species. An agreement subtree of two evolutionary trees is an evolutionary tree which is also a topological subtree of the two given trees. We give an algorithm to determine the largest possible number of leaves in any agreement subtree of two trees T_1 and T_2 with n leaves each. If the maximum degree d of these trees is bounded by a constant, the time complexity is O(n log^2(n)) and is within a log(n) factor of optimal. For general d, this algorithm runs in O(n d^2 log(d) log^2(n)) time or alternatively in O(n d sqrt(d) log^3(n)) time.
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsAlgorithms and Data Compression · semigroups and automata theory · Genome Rearrangement Algorithms
