×

Lowest common ancestor in a binary search tree

Suppose you have given two values of nodes in a binary search tree. You have to find out the lowest common ancestor between the nodes.

Let’s take an example tree-

Binary Tree

For the above binary search tree, if we take inputs 3 and 5, then the output will be 4. It is supposed that there will be a particular output for every input.

Input- 0, 4

Output- 2

Explanation- 0 and 4 both nodes are in the lower level of 2. 2 is the closest node of both nodes, so it is the lowest common ancestor.

Note: -

What is the lowest common ancestor in a binary search tree?

According to the definition of LCA on Wikipedia: “The lowest common ancestor is defined between two nodes m and n as the lowest node in T that has both m and n as descendants (where we allow a node to be a descendant of itself ).”

Algorithm:-

Step 1: Start

Step 2: Two values are taken from the user

Step 3: A tree is created

Step 4: A recursive function called. This function takes two input values and one tree node.

Step 5: If the values are less than the node value, the function is again called with the left node.

Step 6: If the values are greater than the node value, the function is called with the right node.

Step 7: If steps 5 and 6 are not satisfying, then the node value will be returned.

Step 8: The returned value will be printed.

Step 9: Stop.

Explanation of Algorithm: We take the above-given tree, and inputs are 0 and 5. If we call the recursive function with the root node and values, then the function is again called with the node's left node because 0 and 5 are both less than 6. After that, values are compared with node's value two, and here we get our answer because 0 is less than 2, but 5 is greater than 2. The function will return 2.

Code

#include <bits/stdc++.h>
using namespace std;
class node
{
	public:
	int value;
	node* left, *right;
};
/* Function to find LCA of m and n.
The function assumes that both
m and n are present in BST */
node *fun(node* root, int m, int n)
{
	if (root == NULL) 
                return NULL;
	// If both m and n are smaller
	// than root, then LCA lies in left
	if (root->value > m && root->value > n)
		return fun(root->left, m, n);
	// If both m and n are greater than
	// root, then LCA lies in right
	if (root->value < m && root->value < n)
		return fun(root->right, n1, n2);
	return root;
}
/* Helper function that allocates
a new node with the given data.*/
node* insert(int data)
{
	node* root = new node();
	root->value = data;
	root->left = root->right = NULL;
	return(root);
}
/* Driver code*/
int main()
{
	// Let us construct the BST
	// shown in the above figure
	node *root = insert(6);
	root->left = insert(2);
	root->right = insert(8);
	root->left->left = insert(0);
	root->left->right = insert(4);
            root->right->left = insert(7);
	root->right->right = insert(9);
	root->left->right->left = insert(3);
	root->left->right->right = insert(5);
	int m = 0, n = 4;
	node *t = fun(root, m, n);
	cout << "LCA of " << m << " and " << n << " is " << t->value<<endl;
	m = 4, n = 7;
	t = fun(root, n1, n2);
	cout<<"LCA of " << m << " and " << n << " is " << t->value << endl;
	m = 0, n = 2;
	t = fun(root, m, n);
	cout << "LCA of " << m << " and " << n << " is " << t->value << endl;
	return 0;
}

Output

LCA of 0 and 4 is 2
LCA of 4 and 7 is 6
LCA of 0 and 2 is 2

Complexity Analysis

Time complexity- Here, the recursion continues till we find the LCA. So, the complexity directly depends on the height of the tree. Complexity will be O(h).

Space complexity- In this recursive solution, we use constant memory. So, space complexity will be O(1).

Note- The above code and algorithm are based on a recursive approach. The main drawback of this solution is for recursion purposes, and we have to allocate the memory of the function stack. But if we use an iterative approach, then we can avoid this problem. In the iterative solution, we will use the loop in the main function. The loop will continue till we get the answer. The root is updated in every iteration by the left node or right node according to steps 5, 6, and 7 of the algorithm.


Related Topics

Bin Packing Problem (How to minimize the number of used Bins)

You have been given an array. The values of the array represent the size of n different items. You have been also given some bins. You have to store the...

3 minutes read.

How to get Better in Data Structures and Algorithms?

Introduction Data structures and algorithms are fundamental computer science concepts that store, organize, and process data efficiently. By understanding different data structures and algorithms and using them effectively, you can become...

19 minutes read.

Recursion in Fibonacci

Fibonacci heap is considered to be a particular execution of the heap data structure that ultimately helps in making use of not just any number but the Fibonacci numbers. It...

3 minutes read.

Convert Binary Tree into a Threaded Binary Tree

Implementation /*Writing a C++ program that will help us change the binary tree into a threaded binary tree and help us transform. */ #include <bits/stdc++.h> using namespace std; /*Creating the structure of a node...

11 minutes read.

Extended Binary Tree

A form of binary tree known as an extended binary tree replaces all of the original tree's null subtrees with special nodes known as external nodes, while the remaining nodes...

4 minutes read.

Merge Conflicts and ways to handle them

Merge Conflicts Whenever dealing with the Git merge operations, conflicts will be the frequently occurred. When more than two developers work on the same file on different systems using Git, they...

4 minutes read.

How to Start Learning DSA

All programmer experiences a point along the way where they wish they could approach a problem in a more effective manner. They finally learn about the terminology DSA while trying...

10 minutes read.

A Full Binary Tree with n Nodes

Implementation // Writing the implementation of the above approach in C++ #include <bits/stdc++.h> using namespace std; // We are creating a class that will create a node and its left and right children.  struct __nod...

12 minutes read.

Write Main Difference Between Tree and Graph in Data Structures

Graph: The graph has two sets, which are considered V and E. These vertices are also called nodes, and edges are referred to as arcs connecting any two nodes in a...

4 minutes read.

Binary Tree Inorder Traversal

The binary tree is a type of tree in which each and every node has atleast two children except the leaf nodes. We have various operations in the binary tree,...

4 minutes read.

Threaded Binary Tree

The linked form of binary trees wastes storage capacity because more than half of the connection variables have a Missing value. A binary tree has several nodes. Hence n+1 link fields...

8 minutes read.

AVL Tree

AVL Tree AVL Tree is referred to as self-balanced or height-balanced binary search tree where the difference between heights of its left subtree and right subtree (Balance Factor) can't more than...

25 minutes read.

What is a Sparse Matrix in Data Structure?

Definition A matrix in which a few non-zero elements are present is called a Sparse matrix. In a Sparse matrix, almost all the matrices are filled with zero (0). A matrix...

5 minutes read.

Remove duplicates from an unsorted Linked List

Remove duplicates from an unsorted Linked List This article will explain how we can remove duplicates from unsorted linked lists. Here we have given an unsorted singly linked list and will...

3 minutes read.

Find Bridges in a Graph

You have been given a graph. You have to find out the bridges in that graph. Graph may be connected or disconnected. You have to print vertices of particular edge...

4 minutes read.

Extended Binary Tree

An extended binary tree is a binary tree in which all the NILL subtrees present mainly in the original trees are exchanged with the special nodes that are primarily known...

3 minutes read.

Queue Data Structure

Queue in DS: The queue is a non-primitive and linear data structure. It works on the principle of FIFO (First In First Out). That is, the element that is added...

4 minutes read.

Height of a binary tree

The height of a binary tree is generally defined as the height or length of the root _nod in the entire binary tree. In simple words, the height of a...

4 minutes read.

Length of longest palindrome in a linked list using O(1) extra space

Length of longest palindrome in a linked list using O(1) extra space In this problem, we need to find the length of the longest palindrome list that is present in given...

2 minutes read.

Types of Linked list

Single linked list  A single linked list is a linked list in which all nodes are connected with each other in sequence. Each node of a singly linked list has two...

7 minutes read.