Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
+1 vote
4.1k views
in Computer by (69.2k points)

Write an algorithm to insert an element k into binary search tree. Give the analysis and example. 

1 Answer

+2 votes
by (69.8k points)
selected by
 
Best answer

The algorithm to insert an element k into binary search tree is as follows:-

/* Get a new node and make it a leaf*/ 

getnode (k)

left(k) = null

right(k) = null

info (k) = x

/* Initialize the traversal pointers */ 

p = root

trail = null

/* search for the insertion place */

while p <> null do 

begin

trail = p

if info (p) > x

then p = left (p)

else

p = right (p)

end

/* To adjust the pointers */

If trail = null

Then root = k /* attach it as a root in the empty tree */

else 

if info (trail) > x

then

left (trail) = k 

else

right (trail) = k

Analysis : - We notice that the shape of binary tree is determined by the order of insertion. If the values are sorted in ascending or descending order, the resulting tree will have maximum depth equal to number of input elements. The shape of the tree is important from the point of view of search efficiency. The depth of the tree determines the maximum number of comparisons. Therefore we can maximize search efficiency by minimizing the height of the tree.

eg. For the values as 6, 7, 8, 9, 10 

the binary tree formed would be as follows

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...