lca: O(log n) persistent on-line lowest common ancestor calculation without preprocessing
This package provides a reference implementation of my skew binary random access algorithm for performing an online lowest common ancestor search (and online level ancestor search) in logarithmic time without preprocessing. This improves the previous known asymptotic bound for both of these problems from O(h) to O(log h), where h is the height of the tree. Mostly importantly this bound is completely independent of the width or overall size of the tree, enabling you to calculate lowest common ancestors in a distributed fashion with good locality.
While offline algorithms exist for both of these algorithms that that provide O(1) query time, they all require at least O(n) preprocessing, where n is the size of the entire tree, and so are less suitable for LCA search in areas such as revision control where the tree is constantly updated, or distributed computing where the tree may be too large to fit in any one computer's memory.
Slides are available from
http://www.slideshare.net/ekmett/skewbinary-online-lowest-common-ancestor-search
[Skip to Readme]
Downloads
- lca-0.2.3.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1, 0.1.0.1, 0.2, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.3, 0.3.1, 0.4 |
---|---|
Change log | CHANGELOG.md |
Dependencies | base (>=4 && <4.8) [details] |
License | BSD-3-Clause |
Copyright | Copyright (C) 2011-2012 Edward A. Kmett |
Author | Edward A. Kmett |
Maintainer | Edward A. Kmett <[email protected]> |
Revised | Revision 1 made by HerbertValerioRiedel at 2017-06-01T09:09:54Z |
Category | Algorithms, Data Structures |
Home page | http://github.com/ekmett/lca/ |
Bug tracker | http://github.com/ekmett/lca/issues |
Source repo | head: git clone git://github.com/ekmett/lca.git |
Uploaded | by EdwardKmett at 2013-05-08T23:02:13Z |
Distributions | LTSHaskell:0.4, NixOS:0.4, Stackage:0.4 |
Reverse Dependencies | 1 direct, 0 indirect [details] |
Downloads | 9114 total (5 in the last 30 days) |
Rating | 2.0 (votes: 1) [estimated by Bayesian average] |
Your Rating | |
Status | Docs uploaded by user Build status unknown [no reports yet] |