I've been reading about the Lowest Common Ancestor algorithm on top coder and I can't understand why the RMQ algorithm is involved - the solution listed there is insanely complicated and has the following properties:
- O(sqrt(n)) time complexity for searches, O(n) precalculation time complexity
- O(n) space complexity for storing parents of each node
- O(n) space complexity again, for storing precalculations of each node
My solution: given 2 integer values, find the nodes through a simple preorder traversal. Take one of the nodes and go up the tree and store the path into a Set. Take the other node and go up the tree and check each node as I go up: if the node is in the Set, stop and return the LCA. Full implementation.
- O(n) time complexity for finding each of the 2 nodes, given the values (because it's a regular tree, not a BST - thanks @Harman)
- O(log n) space complexity for storing the path into the Set
- O(log n) time complexity for going up the tree with the second node
So given these two choices, is the algorithm on Top Coder better and if yes, why? That's what I can't understand. I thought O(log n) is better than O(sqrt(n)).
Thanks!