SlideShare a Scribd company logo
1 of 19
AVL Trees
                                   6
                   v
                       3               8
                               z
                           4




       AVL Trees                           1
AVL Tree Definition
AVL trees are                                      4
balanced.                                     44
                            2
An AVL Tree is a
                                                                                   3
                                17                                            78
binary search tree                        1                 2                                   1
such that for every
                                     32                         50                         88
                                                   1
internal node v of T,                                  48            62
                                                                          1

the heights of the
children of v can differ
by at most 1.              An example of an AVL tree where the
                           heights are shown next to the nodes:

                       AVL Trees                                                       2
 
AVL Trees:
       AVL trees were invented in 1962 by two Russian
      scientist G.M Adelson Velsky & E.M Landis.
  
Definition:
       An AVL tree is a binary search tree in which the balance
factor of every node, which is defined as the difference b/w the
heights of the node’s left & right sub trees is either   0 or +1
or   -1 .
 Balance factor = ht of left sub tree – ht of right sub tree.
ht=height
Example :

            AVL tree                       BST ( not AVL tree )
                  1                                    2
                10                                    10


     0      5            1        20               05                020

 1   4      -1                0        1                -1
                 7                             4         7
                             12
     0                   0                 0                 0
 2                                                               8
                                           2
                     8
 



      If an insertion of a new node makes an AVL tree
unbalanced , we transform the tree by a rotation
 

         Rotation :
          A Rotation in an AVL tree is a local transformation of
its sub tree rooted at a node whose balance has become either
+2 or -2 ,if there are several such nodes, we rotate the tree
rooted at the unbalanced node that is the closest to the newly
inserted leaf.
 
Types of rotations :

       Totally there are four types of rotations

1.            Single right rotation or R-rotation

2.            Single left rotation or L-rotation

3.            Double right-left rotation or RL-rotation

4.            Double left-right rotation or LR-rotation
 
Points to remember to select different rotation technique :

1.Straight line with positive unbalanced.
              apply Right rotation for unbalanced node.
              +2
                5                            04

    +1    4                        0             0
                                            2        5

  0
      2
 

2.Straight line with negative unbalanced.
               apply left rotation for unbalanced node.

      -2
           5
                                                 06

                6 -1                     0            0
                                             5            7

                       70
 

3.Curved line with positive unbalanced.
             apply left-right rotation.

       Right rotation for unbalanced node and left rotation
for the nearest node.

                  +2
             5                                   0
                                                 4
        4   -1
                                           0 2        5   0
              2        0
 

4.Curved line with negative unbalanced.
                  apply right-left rotation.

       Left rotation for unbalanced node and right rotation
for the nearest node.

                  -2
              5                                      0
                                                      7
              +1       8
                                               0 5        8 0
      0   7
n(2)   3

                                                                      n(1)

Height of an AVL Tree
                                                                 4



 Fact: The height of an AVL tree storing n keys is O(log
 n).
 Proof: Let us bound n(h): the minimum number of internal
 nodes of an AVL tree of height h.
 We easily see that n(1) = 1 and n(2) = 2
 For n > 2, an AVL tree of height h contains the root node,
 one AVL subtree of height n-1 and another of height n-2.
 That is, n(h) = 1 + n(h-1) + n(h-2)
 Knowing n(h-1) > n(h-2), we get n(h) > 2n(h-2). So
 n(h) > 2n(h-2), n(h) > 4n(h-4), n(h) > 8n(n-6), … (by induction),
 n(h) > 2in(h-2i)
 Solving the base case we get: n(h) > 2 h/2-1
 Taking logarithms: h < 2log n(h) +2
 Thus the height of an AVL Trees is O(log n)
                         AVL tree                                    11
Insertion in an AVL Tree
 Insertion is as in a binary search tree
 Always done by expanding an external node.
 Example:       44                       44

                                                                                      c=z
        17                       78               17                            78
                                                                a=y

             32             50          88             32             50             88


                       48        62                              48             62
                                                                                     b=x


                                                                           54
                                                                 w


                  before insertion                          after insertion

                                      AVL Trees                                             12
Trinode Restructuring
           let (a,b,c) be an inorder listing of x, y, z
           perform the rotations needed to make b the topmost node of the
           three
                                   (other two cases
                                                                             a=z                  case 2: double rotation
            a=z                    are symmetrical)
                                                                                                  (a right rotation about c,
                                                                                       c=y        then a left rotation about a)
                  b=y
                                                                       T0
      T0
                        c=x                                                      b=x
                                                                                             T3
            T1                                       b=y                                                           b=x
                                                                            T1         T2
                   T2         T3
                                          a=z                   c=x                                     a=z                   c=y


case 1: single rotation
(a left rotation about a)            T0         T1         T2         T3                           T0         T1         T2         T3

                                                           AVL Trees                                                      13
Insertion Example, continued
                             5
                        44
      2
                                                                  z       64
          17                                                          78         7
                                      3
                                          2y                                         1
                    1
               32                1        50                4                   88
                             1
                                                        2        x
                                 48
                                               1
                                                   3        62
                                                                 5
                                                   54                           T3
unbalanced...                                                     T2
                                 T0
                                                                                4
                                          T1                               44                              4
                                                   2                                                   3        x
                                                       17
                                                                                            2 y            62
                                                                                                                     z6
                                                                      1                   2                               2
                                                                 32
                                                                                1
                                                                                     1     50     3             5
                                                                                                                     78        7
                                                                                                       1                            1
                    ...balanced                                                      48           54                           88

                                                                                                                    T2

                                                                                     T0           T1                           T3
                                                   AVL Trees                                                              14
Restructuring
(as Single Rotations)
 Single Rotations:


            a=z                              single rotation               b=y
                       b=y                                      a=z                   c=x
                                  c=x

       T0                                                                                   T3
                  T1                    T3                 T0         T1         T2
                             T2



                             c=z        single rotation               b=y
                  b=y                                      a=x                   c=z
       a=x

                                   T3                 T3
  T0                    T2                                       T2         T1         T0
             T1
                                             AVL Trees                                           15
Restructuring
(as Double Rotations)
 double rotations:


            a=z                               double rotation               b=x
                                  c=y                            a=z                   c=y
                       b=x

       T0                                                                         T2
                             T2          T3                 T0         T1                     T3
                  T1


                              c=z         double rotation              b=x
        a=y                                                 a=y                    c=z
                   b=x

                                    T0                            T2
  T3         T2                                        T3                    T1          T0
                        T1
                                               AVL Trees                                           16
Removal in an AVL Tree
  Removal begins as in a binary search tree, which
  means the node removed will become an empty
  external node. Its parent, w, may cause an imbalance.
  Example:      44                     44


         17                           62               17                  62


              32            50               78                  50             78


                       48        54               88        48        54             88




                   before deletion of 32                    after deletion

                                           AVL Trees                                      17
Rebalancing after a Removal
  Let z be the first unbalanced node encountered while travelling
  up the tree from w. Also, let y be the child of z with the larger
  height, and let x be the child of y with the larger height.
  We perform restructure(x) to restore balance at z.
  As this restructuring may upset the balance of another node
  higher in the tree, we must continue checking for balance until
  the root of T is reached


                                                                      62
      a=z     44

                                                               44              78
  w     17                   62         b=y

                                                          17         50             88
                   50             78          c=x


                                                                48        54
             48         54             88


                                              AVL Trees                                  18
Running Times for
AVL Trees
 a single restructure is O(1)
    using a linked-structure binary tree
 find is O(log n)
    height of tree is O(log n), no restructures needed
 insert is O(log n)
    initial find is O(log n)
    Restructuring up the tree, maintaining heights is O(log n)
 remove is O(log n)
    initial find is O(log n)
    Restructuring up the tree, maintaining heights is O(log n)




                             AVL Trees                            19

More Related Content

What's hot (20)

Binary tree
Binary  treeBinary  tree
Binary tree
 
AVL Tree Data Structure
AVL Tree Data StructureAVL Tree Data Structure
AVL Tree Data Structure
 
Red black trees
Red black treesRed black trees
Red black trees
 
trees in data structure
trees in data structure trees in data structure
trees in data structure
 
Red black trees presentation
Red black trees presentationRed black trees presentation
Red black trees presentation
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search Tree
 
Avl tree
Avl treeAvl tree
Avl tree
 
Merge sort algorithm
Merge sort algorithmMerge sort algorithm
Merge sort algorithm
 
Trees data structure
Trees data structureTrees data structure
Trees data structure
 
Types of Tree in Data Structure in C++
Types of Tree in Data Structure in C++Types of Tree in Data Structure in C++
Types of Tree in Data Structure in C++
 
Binary Search Tree in Data Structure
Binary Search Tree in Data StructureBinary Search Tree in Data Structure
Binary Search Tree in Data Structure
 
Introduction to data structure ppt
Introduction to data structure pptIntroduction to data structure ppt
Introduction to data structure ppt
 
Binary tree
Binary tree Binary tree
Binary tree
 
Data Structure (Tree)
Data Structure (Tree)Data Structure (Tree)
Data Structure (Tree)
 
1.1 binary tree
1.1 binary tree1.1 binary tree
1.1 binary tree
 
Data Structure and Algorithms AVL Trees
Data Structure and Algorithms AVL TreesData Structure and Algorithms AVL Trees
Data Structure and Algorithms AVL Trees
 
Tree-In Data Structure
Tree-In Data StructureTree-In Data Structure
Tree-In Data Structure
 
Lec 17 heap data structure
Lec 17 heap data structureLec 17 heap data structure
Lec 17 heap data structure
 
Red black tree
Red black treeRed black tree
Red black tree
 
AVL tree ( Balanced Binary Search Tree)-Data Structure
AVL tree ( Balanced Binary Search Tree)-Data StructureAVL tree ( Balanced Binary Search Tree)-Data Structure
AVL tree ( Balanced Binary Search Tree)-Data Structure
 

Viewers also liked (20)

Avl trees
Avl treesAvl trees
Avl trees
 
AVL Tree
AVL TreeAVL Tree
AVL Tree
 
Avl tree
Avl treeAvl tree
Avl tree
 
Trees, Binary Search Tree, AVL Tree in Data Structures
Trees, Binary Search Tree, AVL Tree in Data Structures Trees, Binary Search Tree, AVL Tree in Data Structures
Trees, Binary Search Tree, AVL Tree in Data Structures
 
Data Structures : AVL Trees
Data Structures : AVL TreesData Structures : AVL Trees
Data Structures : AVL Trees
 
Binary Search Tree and AVL
Binary Search Tree and AVLBinary Search Tree and AVL
Binary Search Tree and AVL
 
Binary Search Trees - AVL and Red Black
Binary Search Trees - AVL and Red BlackBinary Search Trees - AVL and Red Black
Binary Search Trees - AVL and Red Black
 
Advance data structure
Advance data structureAdvance data structure
Advance data structure
 
B tree short
B tree shortB tree short
B tree short
 
Digital Search Tree
Digital Search TreeDigital Search Tree
Digital Search Tree
 
Application of tries
Application of triesApplication of tries
Application of tries
 
Trie Data Structure
Trie Data StructureTrie Data Structure
Trie Data Structure
 
BTree, Data Structures
BTree, Data StructuresBTree, Data Structures
BTree, Data Structures
 
B trees in Data Structure
B trees in Data StructureB trees in Data Structure
B trees in Data Structure
 
Memory Mapping Cache
Memory Mapping CacheMemory Mapping Cache
Memory Mapping Cache
 
Stack Data Structure & It's Application
Stack Data Structure & It's Application Stack Data Structure & It's Application
Stack Data Structure & It's Application
 
Sorting
SortingSorting
Sorting
 
Application Letter ( Block Style )
Application Letter ( Block Style )Application Letter ( Block Style )
Application Letter ( Block Style )
 
Cache memory
Cache memoryCache memory
Cache memory
 
9. Searching & Sorting - Data Structures using C++ by Varsha Patil
9. Searching & Sorting - Data Structures using C++ by Varsha Patil9. Searching & Sorting - Data Structures using C++ by Varsha Patil
9. Searching & Sorting - Data Structures using C++ by Varsha Patil
 

Similar to Avl trees

Similar to Avl trees (20)

Avl trees final
Avl trees finalAvl trees final
Avl trees final
 
Lec11
Lec11Lec11
Lec11
 
Avl trees
Avl treesAvl trees
Avl trees
 
AVL TREE PREPARED BY M V BRAHMANANDA REDDY
AVL TREE PREPARED BY M V BRAHMANANDA REDDYAVL TREE PREPARED BY M V BRAHMANANDA REDDY
AVL TREE PREPARED BY M V BRAHMANANDA REDDY
 
Design data Analysis Avl Trees.pptx by piyush sir
Design data Analysis Avl Trees.pptx by piyush sirDesign data Analysis Avl Trees.pptx by piyush sir
Design data Analysis Avl Trees.pptx by piyush sir
 
Avl tree ppt
Avl tree pptAvl tree ppt
Avl tree ppt
 
4. avl
4. avl4. avl
4. avl
 
Study about AVL Tree & Operations
Study about AVL Tree & OperationsStudy about AVL Tree & Operations
Study about AVL Tree & Operations
 
Avltrees
AvltreesAvltrees
Avltrees
 
Adelson velskii Landis rotations based on
Adelson velskii Landis rotations based onAdelson velskii Landis rotations based on
Adelson velskii Landis rotations based on
 
Data structures trees and graphs - AVL tree.pptx
Data structures trees and graphs - AVL  tree.pptxData structures trees and graphs - AVL  tree.pptx
Data structures trees and graphs - AVL tree.pptx
 
Avl tree detailed
Avl tree detailedAvl tree detailed
Avl tree detailed
 
AVL Tree.pptx
AVL Tree.pptxAVL Tree.pptx
AVL Tree.pptx
 
3-avl-tree.ppt
3-avl-tree.ppt3-avl-tree.ppt
3-avl-tree.ppt
 
Lecture3
Lecture3Lecture3
Lecture3
 
AVL-TREE.ppt
AVL-TREE.pptAVL-TREE.ppt
AVL-TREE.ppt
 
avl.ppt
avl.pptavl.ppt
avl.ppt
 
avl.ppt
avl.pptavl.ppt
avl.ppt
 
Lect 13, 14 (final)AVL Tree and Rotations.pdf
Lect 13, 14 (final)AVL Tree and Rotations.pdfLect 13, 14 (final)AVL Tree and Rotations.pdf
Lect 13, 14 (final)AVL Tree and Rotations.pdf
 
3 nodal analysis
3 nodal analysis3 nodal analysis
3 nodal analysis
 

Recently uploaded

Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfSanaAli374401
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 

Recently uploaded (20)

Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 

Avl trees

  • 1. AVL Trees 6 v 3 8 z 4 AVL Trees 1
  • 2. AVL Tree Definition AVL trees are 4 balanced. 44 2 An AVL Tree is a 3 17 78 binary search tree 1 2 1 such that for every 32 50 88 1 internal node v of T, 48 62 1 the heights of the children of v can differ by at most 1. An example of an AVL tree where the heights are shown next to the nodes: AVL Trees 2
  • 3.   AVL Trees: AVL trees were invented in 1962 by two Russian scientist G.M Adelson Velsky & E.M Landis.    Definition: An AVL tree is a binary search tree in which the balance factor of every node, which is defined as the difference b/w the heights of the node’s left & right sub trees is either 0 or +1 or -1 . Balance factor = ht of left sub tree – ht of right sub tree. ht=height
  • 4. Example : AVL tree BST ( not AVL tree ) 1 2 10 10 0 5 1 20 05 020 1 4 -1 0 1 -1 7 4 7 12 0 0 0 0 2 8 2 8
  • 5.   If an insertion of a new node makes an AVL tree unbalanced , we transform the tree by a rotation   Rotation : A Rotation in an AVL tree is a local transformation of its sub tree rooted at a node whose balance has become either +2 or -2 ,if there are several such nodes, we rotate the tree rooted at the unbalanced node that is the closest to the newly inserted leaf.
  • 6.   Types of rotations : Totally there are four types of rotations 1. Single right rotation or R-rotation 2. Single left rotation or L-rotation 3. Double right-left rotation or RL-rotation 4. Double left-right rotation or LR-rotation
  • 7.   Points to remember to select different rotation technique : 1.Straight line with positive unbalanced. apply Right rotation for unbalanced node. +2 5 04 +1 4 0 0 2 5 0 2
  • 8.   2.Straight line with negative unbalanced. apply left rotation for unbalanced node. -2 5 06 6 -1 0 0 5 7 70
  • 9.   3.Curved line with positive unbalanced. apply left-right rotation. Right rotation for unbalanced node and left rotation for the nearest node. +2 5 0 4 4 -1 0 2 5 0 2 0
  • 10.   4.Curved line with negative unbalanced. apply right-left rotation. Left rotation for unbalanced node and right rotation for the nearest node. -2 5 0 7 +1 8 0 5 8 0 0 7
  • 11. n(2) 3 n(1) Height of an AVL Tree 4 Fact: The height of an AVL tree storing n keys is O(log n). Proof: Let us bound n(h): the minimum number of internal nodes of an AVL tree of height h. We easily see that n(1) = 1 and n(2) = 2 For n > 2, an AVL tree of height h contains the root node, one AVL subtree of height n-1 and another of height n-2. That is, n(h) = 1 + n(h-1) + n(h-2) Knowing n(h-1) > n(h-2), we get n(h) > 2n(h-2). So n(h) > 2n(h-2), n(h) > 4n(h-4), n(h) > 8n(n-6), … (by induction), n(h) > 2in(h-2i) Solving the base case we get: n(h) > 2 h/2-1 Taking logarithms: h < 2log n(h) +2 Thus the height of an AVL Trees is O(log n) AVL tree 11
  • 12. Insertion in an AVL Tree Insertion is as in a binary search tree Always done by expanding an external node. Example: 44 44 c=z 17 78 17 78 a=y 32 50 88 32 50 88 48 62 48 62 b=x 54 w before insertion after insertion AVL Trees 12
  • 13. Trinode Restructuring let (a,b,c) be an inorder listing of x, y, z perform the rotations needed to make b the topmost node of the three (other two cases a=z case 2: double rotation a=z are symmetrical) (a right rotation about c, c=y then a left rotation about a) b=y T0 T0 c=x b=x T3 T1 b=y b=x T1 T2 T2 T3 a=z c=x a=z c=y case 1: single rotation (a left rotation about a) T0 T1 T2 T3 T0 T1 T2 T3 AVL Trees 13
  • 14. Insertion Example, continued 5 44 2 z 64 17 78 7 3 2y 1 1 32 1 50 4 88 1 2 x 48 1 3 62 5 54 T3 unbalanced... T2 T0 4 T1 44 4 2 3 x 17 2 y 62 z6 1 2 2 32 1 1 50 3 5 78 7 1 1 ...balanced 48 54 88 T2 T0 T1 T3 AVL Trees 14
  • 15. Restructuring (as Single Rotations) Single Rotations: a=z single rotation b=y b=y a=z c=x c=x T0 T3 T1 T3 T0 T1 T2 T2 c=z single rotation b=y b=y a=x c=z a=x T3 T3 T0 T2 T2 T1 T0 T1 AVL Trees 15
  • 16. Restructuring (as Double Rotations) double rotations: a=z double rotation b=x c=y a=z c=y b=x T0 T2 T2 T3 T0 T1 T3 T1 c=z double rotation b=x a=y a=y c=z b=x T0 T2 T3 T2 T3 T1 T0 T1 AVL Trees 16
  • 17. Removal in an AVL Tree Removal begins as in a binary search tree, which means the node removed will become an empty external node. Its parent, w, may cause an imbalance. Example: 44 44 17 62 17 62 32 50 78 50 78 48 54 88 48 54 88 before deletion of 32 after deletion AVL Trees 17
  • 18. Rebalancing after a Removal Let z be the first unbalanced node encountered while travelling up the tree from w. Also, let y be the child of z with the larger height, and let x be the child of y with the larger height. We perform restructure(x) to restore balance at z. As this restructuring may upset the balance of another node higher in the tree, we must continue checking for balance until the root of T is reached 62 a=z 44 44 78 w 17 62 b=y 17 50 88 50 78 c=x 48 54 48 54 88 AVL Trees 18
  • 19. Running Times for AVL Trees a single restructure is O(1)  using a linked-structure binary tree find is O(log n)  height of tree is O(log n), no restructures needed insert is O(log n)  initial find is O(log n)  Restructuring up the tree, maintaining heights is O(log n) remove is O(log n)  initial find is O(log n)  Restructuring up the tree, maintaining heights is O(log n) AVL Trees 19

Editor's Notes

  1. Red-Black Trees 11/06/12 23:50