Binary Search Tree : Lowest Common Ancestor

  • + 0 comments

    Neat code. I think this is in case of an ordered tree where lt < root < rt. If this was not the case, I think using Queue to push the children; level by level would solve it.