Books Online Courses
Free Tutorials  Go to Your University  Placement Preparation 
Latest:- Important tips for Campus Placements
0 like 0 dislike
189 views
in RTU/BTU B.Tech(CSE-III Sem) DSA LAB by Goeduhub's Expert (5.8k points)
Example of Insertion in AVL Tree

1 Answer

0 like 0 dislike
by Goeduhub's Expert (5.8k points)
 
Best answer

Example of Insertion in AVL Tree

Consider an AVL Tree with following numbers:

50 , 20 , 60 , 10 , 8 , 15 , 32 , 46 , 11 , 48

Step 1: Insert 50

Step 1

Step 2: Insert 20

As 20 < 50, so insert 20 in 50’s left sub tree.

Step 2

Step 3: Insert 60

As 60 > 50, so insert 60 in 50’s right sub tree.

Step 3

Step 4: Insert 10

  • As 10 < 50, so insert 10 in 50’s left sub tree.
  • As 10 < 20, so insert 10 in 20’s left sub tree.

Step 4

Step 5: Insert 8

  • As 8 < 50, so insert 8 in 50’s left sub tree.
  • As 8 < 20, so insert 8 in 20’s left sub tree.
  • As 8 < 10, so insert 8 in 10’s left sub tree.

Step 5

To balance the tree,

  • Find the first imbalanced node on the path from the newly inserted node (node 8) to the root node.
  • The first imbalanced node is node 20.
  • Now, count three nodes from node 20 in the direction of leaf node.
  • Then, use AVL tree rotation to balance the tree.

Step 6: Insert 15

  • As 15 < 50, so insert 15 in 50’s left sub tree.
  • As 15 > 10, so insert 15 in 10’s right sub tree.
  • As 15 < 20, so insert 15 in 20’s left sub tree.

Step 6

To balance the tree,

  • Find the first imbalanced node on the path from the newly inserted node (node 15) to the root node.
  • The first imbalanced node is node 50.
  • Now, count three nodes from node 50 in the direction of leaf node.
  • Then, use AVL tree rotation to balance the tree.

Step 7: Insert 32

  • As 32 > 20, so insert 32 in 20’s right sub tree.
  • As 32 < 50, so insert 32 in 50’s left sub tree.

Step 8: Insert  46

  • As 46 > 20, so insert 46 in 20’s right sub tree.
  • As 46 < 50, so insert 46 in 50’s left sub tree.
  • As 46 > 32, so insert 46 in 32’s right sub tree.

Step 8

Step 9: Insert 11

  • As 11 < 20, so insert 11 in 20’s left sub tree.
  • As 11 > 10, so insert 11 in 10’s right sub tree.
  • As 11 < 15, so insert 11 in 15’s left sub tree.

Step 9

Step 10: Insert 48

  • As 11 < 20, so insert 11 in 20’s left sub tree.
  • As 11 > 10, so insert 11 in 10’s right sub tree.
  • As 11 < 15, so insert 11 in 15’s left sub tree.

Step 10

To balance the tree,

  • Find the first imbalanced node on the path from the newly inserted node (node 48) to the root node.
  • The first imbalanced node is node 32.
  • Now, count three nodes from node 32 in the direction of leaf node.
  • Then, use AVL tree rotation to balance the tree.


For more Data Structures & Algorithms Tutorials Click here


3.3k questions

7.1k answers

395 comments

4.6k users

Related questions

0 like 0 dislike
1 answer 248 views
0 like 0 dislike
1 answer 1.2k views
0 like 0 dislike
1 answer 376 views

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...