Coding Ninjas Logo

Home > Data Structures and Algorithms Questions > What is LCA in binary tree explain and how to find it in binary search tree .

What is LCA in binary tree explain and how to find lca for two node in binary search tree

Answer:
Complexity analysis:
  • Time complexity :O(h) h->height of tree .
  • Space complexity :O(h) recursive stack.

  • Similar Questions