AVL Tree | Programming and Data Structures - Computer Science Engineering (CSE) PDF Download

Introduction

Tree is one of the most important data structure that is used for efficiently performing operations like insertion, deletion and searching of values. However, while working with a large volume of data, construction of a well-balanced tree for sorting all data s not feasible. Thus only useful data is stored as a tree, and the actual volume of data being used continually changes through the insertion of new data and deletion of existing data. You will find in some cases where the NULL link to a binary tree to special links is called as threads and hence it is possible to perform traversals, insertions, deletions without using either stack or recursion. In this chapter, you will learn about the Height balance tree which is also known as the AVL tree.

What is Tthe AVL Tree?

AVL tree is a binary search tree in which the difference of heights of left and right subtrees of any node is less than or equal to one. The technique of balancing the height of binary trees was developed by Adelson, Velskii, and Landi and hence given the short form as AVL tree or Balanced Binary Tree.

An AVL tree can be defined as follows:
Let T be a non-empty binary tree with TL and TR as its left and right subtrees. The tree is height balanced if:

  • TL and TR are height balanced
  • hL - hR <= 1, where hL - hR are the heights of TL and TR

The Balance factor of a node in a binary tree can have value 1, -1, 0, depending on whether the height of its left subtree is greater, less than or equal to the height of the right subtree.

Advantages of AVL tree

Since AVL trees are height balance trees, operations like insertion and deletion have low time complexity. Let us consider an example:
If you have the following tree having keys 1, 2, 3, 4, 5, 6, 7 and then the binary tree will be like the second figure:

AVL Tree | Programming and Data Structures - Computer Science Engineering (CSE)

To insert a node with a key Q in the binary tree, the algorithm requires seven comparisons, but if you insert the same key in AVL tree, from the above 1st figure, you can see that the algorithm will require three comparisons.

Representation of AVL Trees

AVL Tree | Programming and Data Structures - Computer Science Engineering (CSE)

Algorithm for different Operations on AVL

1. For Insertion

Step 1: First, insert a new element into the tree using BST's (Binary Search Tree) insertion logic.

Step 2: After inserting the elements you have to check the Balance Factor of each node.

Step 3: When the Balance Factor of every node will be found like 0 or 1 or -1 then the algorithm will proceed for the next operation.

Step 4: When the balance factor of any node comes other than the above three values then the tree is said to be imbalanced. Then perform the suitable Rotation to make it balanced and then the algorithm will proceed for the next operation.

2. For Deletion:

Step 1: Firstly, find that node where k is stored
Step 2: Secondly delete those contents of the node (Suppose the node is x)
Step 3: Claim: Deleting a node in an AVL tree can be reduced by deleting a leaf. There are three possible cases:

  • When x has no children then, delete x
  • When x has one child, let x' becomes the child of x.
  • Notice: x' cannot have a child, since subtrees of T can differ in height by at most one :
    • then replace the contents of x with the contents of x'
    • then delete x' (a leaf)
  • Step 4: When x has two children,
    • then find x's successor z (which has no left child)
    • then replace x's contents with z's contents, and
    • delete z

In all of the three cases, you will end up removing a leaf.

The document AVL Tree | Programming and Data Structures - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Programming and Data Structures.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
119 docs|30 tests

Top Courses for Computer Science Engineering (CSE)

119 docs|30 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

AVL Tree | Programming and Data Structures - Computer Science Engineering (CSE)

,

Free

,

AVL Tree | Programming and Data Structures - Computer Science Engineering (CSE)

,

Extra Questions

,

practice quizzes

,

pdf

,

Viva Questions

,

Summary

,

Semester Notes

,

Exam

,

Important questions

,

video lectures

,

study material

,

ppt

,

shortcuts and tricks

,

Sample Paper

,

mock tests for examination

,

past year papers

,

Previous Year Questions with Solutions

,

MCQs

,

AVL Tree | Programming and Data Structures - Computer Science Engineering (CSE)

,

Objective type Questions

;