SlideShare a Scribd company logo
1 of 70
Download to read offline
Algorithms
Splay Trees
Splay Trees
● In balanced tree schemes, explicit rules are
followed to ensure balance.
● In splay trees, there are no such rules.
● Search, insert, and delete operations are like in
binary search trees, except at the end of each
operation a special step called splaying is done.
● Splaying ensures that all operations take O(lg n)
amortized time.
● First, a quick review of BST operations…
BST: Search
44
8817
65 9732
28 54 82
7629
80
Note: In the handout,
sentinel leaf nodes are
assumed.
 tree with n keys
has 2n+1 nodes.
Search(25) Search(76)
BST: Insert
44
8817
65 9732
28 54 82
7629
80
Insert(78)
78
BST: Delete
44
8817
65 9732
28 54 82
7629
80
78
Delete(32)
Has only one
child: just splice
out 32.
BST: Delete
44
8817
65 9728
54 82
76
29
80
78
Delete(32)
BST: Delete
44
8817
65 9732
28 54 82
7629
80
78
Delete(65)
Has two children:
Replace 65 by successor,
76, and splice out
successor.
Note: Successor can have
at most one child. (Why?)
BST: Delete
44
8817
76 9732
28 54 82
29 80
78
Delete(65)
Splaying
● In splay trees, after performing an ordinary
BST Search, Insert, or Delete, a splay
operation is performed on some node x (as
described later).
● The splay operation moves x to the root of the
tree.
● The splay operation consists of sub-operations
called zig-zig, zig-zag, and zig.
Zig-Zig
10
20
30
T3 T4
T2
T1
z
y
x
30
20
10
T1 T2
T3
T4
x
y
z
(Symmetric case too)
Note: x’s depth decreases by two.
x has a grandparent
Zig-Zag
10
30
20
T3
T4
T2
T1
z
y
x
20
10
T1 T2 T3 T4
x
z
(Symmetric case too)
Note: x’s depth decreases by two.
30
y
x has a grandparent
Zig
20
10
T1 T2 T3 T4
x
y
(Symmetric case too)
Note: x’s depth decreases by one.
30
w
10
20
30
T3 T4
T2
T1
y
x
w
x has no grandparent (so, y is the root)
Note: w could be NIL
Top Down Splay Trees
● Works by starting at the top and working down to produce a
similar result.
● All of the nodes lower than the target are put into one tree and
all of the nodes greater than the target are put into another tree
then it is recombined.
Top Down Splaying
Top Down Splaying
Top Down Splaying
Complete Example
44
8817
65 9732
28 54 82
7629
80
78
Splay(78) 50
x
y
z
zig-zag
Complete Example
44
8817
65 9732
28 54 82
7829
8076
Splay(78) 50
zig-zag
x
yz
Complete Example
44
8817
65 9732
28 54 82
7829
8076
Splay(78) 50
x
y
z
zig-zag
Complete Example
44
8817
65
9732
28
54
82
78
29 8076
Splay(78) 50
zig-zag
z y
x
Complete Example
44
8817
65
9732
28
54
82
78
29 8076
Splay(78) 50
x
y
z
zig-zag
Complete Example
44
8817
65
9732
28
54
82
29
80
76
Splay(78)
50
78
zig-zag
z
y
x
Complete Example
44
8817
65
9732
28
54
82
29
80
76
Splay(78)
50
78
y
x
w
zig
Complete Example
44
8817
65
9732
28
54
82
29
80
76
Splay(78)
50
78 x
y
w
zig
Result of splaying
● The result is a binary tree, with the left subtree
having all keys less than the root, and the right
subtree having keys greater than the root.
● Also, the final tree is “more balanced” than the
original.
● However, if an operation near the root is done,
the tree can become less balanced.
When to Splay
● Search:
■ Successful: Splay node where key was found.
■ Unsuccessful: Splay last-visited internal node (i.e.,
last node with a key).
● Insert:
■ Splay newly added node.
● Delete:
■ Splay parent of removed node (which is either the
node with the deleted key or its successor).
● Note: All operations run in O(h) time, for a tree
of height h.
Examples
With a little consideration, it becomes obvious
that inserting 1 through 10, in that order, will
produce the splay tree
Examples
We will repeatedly access the deepest
node in the tree
■ With each operation, this node will be splayed
to the root
■ We begin with a zig-zig rotation
Examples
This is followed by another zig-zig
operation...
Examples
...and another
Examples
...and another
Examples
At this point, this requires a single zig
operation to bring 1 to the root
Examples
The height of this tree is now 6 and no
longer 9
Examples
The deepest node is now 3:
■ This node must be splayed to the root
beginning with a zig-zag operation
Examples
The node 3 is rotated up
■ Next we require a zig-zig operation
Examples
Finally, to bring 3 to the root, we need a
zig-zag operation
Examples
The height of this tree is only 4
Examples
Of the three deepest nodes, 9 requires a
zig-zig operation, so will access it next
■ The zig-zig operation will push 6 and its left
sub-tree down
Examples
This is closer to a linked list; however,
we’re not finished
■ A zig-zag operation will move 9 to the root
Examples
In this case, the height of the tree is now
greater: 5
Examples
Accessing the deepest node, 5, we must
begin with a zig-zag operation
Examples
Next, we require a zig-zag operation to
move 5 to the location of 3
Examples
Finally, we require a single zig operation to
move 5 to the root
Examples
The height of the tree is 4; however, 7 of
the nodes form a perfect tree at the root
Examples
Accessing 7 will require two zig-zag
operations
Examples
The first zig-zag moves it to depth 2
Examples
7 is promoted to the root through a zig-zag
operation
Examples
Finally, accessing 2, we first require a zig-
zag operation
Examples
This now requires a zig-zig operation to
promote 2 to the root
Examples
In this case, with 2 at the root, 3-10 must
be in the right sub-tree
■ The right sub-tree happens to be AVL
balanced
Examples
To remove a node, for example, 6, splay it
to the root
■ First we require a zig-zag operation
Examples
At this point, we need a zig operation to
move 6 to the root
Examples
We will now copy the minimum element
from the right sub-tree
■ In this case, the node with 7 has a single sub-
tree, we will simply move it up
Examples
Thus, we have removed 6 and the
resulting tree is, again, reasonably
balanced
Amortized Analysis
● Based on the Accounting Method
■ Idea: When an operation’s amortized cost exceeds
it actual cost, the difference is assigned to certain
tree nodes as credit.
■ Credit is used to pay for subsequent operations
whose amortized cost is less than their actual cost.
● Most of our analysis will focus on splaying.
■ The BST operations will be easily dealt with at the
end.
Review: Accounting Method
● Stack Example:
■ Operations:
○ Push(S, x).
○ Pop(S).
○ Multipop(S, k): if stack has s items, pop off min(s, k)
items.
s ≥ k
items
s  k
items
Multipop(S, k)
Multipop(S, k)
s – k
items
0 items
Can implement in O(1) time.
Accounting Method (Continued)
● We charge each operation an amortized cost.
● Charge may be more or less than actual cost.
● If more, then we have credit.
● This credit can be used to pay for future
operations whose amortized cost is less than
their actual cost.
● Require: For any sequence of operations,
amortized cost upper bounds worst-case cost.
■ That is, we always have nonnegative credit.
Accounting Method (Continued)
Stack Example:
Actual Costs:
Push: 1
Pop: 1
Multipop: min(s, k)
Amortized Costs:
Push: 2
Pop: 0
Multipop: 0
Pays for the push and a future pop.
All O(1).
For a sequence of n
operations, does total
amortized cost upper
bound total worst-case
cost, as required?
What is the total worst-
case cost of the sequence?
Ranks
● T is a splay tree with n keys.
● Definition: The size of node v in T, denoted
n(v), is the number of nodes in the subtree
rooted at v.
■ Note: The root is of size 2n+1.
● Definition: The rank of v, denoted r(v), is
lg(n(v)).
■ Note: The root has rank lg(2n+1).
● Definition: r(T) = vT r(v).
Meaning of Ranks
● The rank of a tree is a measure of how well balanced it
is.
● A well balanced tree has a low rank.
● A badly balanced tree has a high rank.
● The splaying operations tend to make the rank smaller,
which balances the tree and makes other operations
faster.
● Some operations near the root may make the rank
larger and slightly unbalance the tree.
● Amortized analysis is used on splay trees, with the rank
of the tree being the potential
Credit Invariant
● We will define amortized costs so that the
following invariant is maintained.
■ So, each operation’s amortized cost = its real cost + the
total change in r(T) it causes (positive or negative).
● Let Ri = op. i’s real cost and i = change in r(T) it
causes. Total am. cost = i=1,…,n (Ri + i). Initial
tree has rank 0 & final tree has non-neg. rank. So,
i=1,…n i  0, which implies total am. cost  total
real cost.
Each node v of T has r(v) credits in its account.
What’s Left?
● We want to show that the per-operation amortized
cost is logarithmic.
● To do this, we need to look at how BST operations
and splay operations affect r(T).
■ We spend most of our time on splaying, and consider the
specific BST operations later.
● To analyze splaying, we first look at how r(T)
changes as a result of a single substep, i.e., zig, zig-
zig, or zig-zag.
■ Notation: Ranks before and after a substep are denoted
r(v) and r(v), respectively.
Proposition
Proposition : Let  be the change in r(T) caused by a single
substep. Let x be the “x” in our descriptions of these
substeps. Then,
•   3(r(x)  r(x))  2 if the substep is a zig-zig or a zig-
zag;
•   3(r(x)  r(x)) if the substep is a zig.
Proof:
Three cases, one for each kind of substep…
Case 1: zig-zig
10
20
30
T3 T4
T2
T1
z
y
x
30
20
10
T1 T2
T3
T4
x
y
z
Only the ranks of x, y, and
z change. Also, r(x) = r(z),
r(y)  r(x), and r(y)  r(x).
Thus,
 = r(x) + r(y) + r(z) – r(x) – r(y) – r(z)
= r(y) + r(z) – r(x) – r(y)
 r(x) + r(z) – 2r(x). (1)
Also, n(x) + n(z)  n(x), which (by property of lg), implies
r(x) + r(z)  2r(x) – 2, i.e.,
r(z)  2r(x) – r(x) – 2. (2)
By (1) and (2),   r(x) + (2r(x) – r(x) – 2) – 2r(x)
= 3(r(x) – r(x)) – 2.
If a > 0, b > 0, and c  a + b,
then lg a + lg b  2 lg c – 2.
Case 2: zig-zag
Only the ranks of x, y, and
z change. Also, r(x) = r(z)
and r(x)  r(y). Thus,
 = r(x) + r(y) + r(z) – r(x) – r(y) – r(z)
= r(y) + r(z) – r(x) – r(y)
 r(y) + r(z) – 2r(x). (1)
Also, n(y) + n(z)  n(x), which (by property of lg), implies
r(y) + r(z)  2r(x) – 2. (2)
By (1) and (2),   2r(x) – 2 – 2r(x)
 3(r(x) – r(x)) – 2.
10
30
20
T3
T4
T2
T1
z
y
x
20
10
T1 T2 T3 T4
x
z 30y
Case 3: zig
Only the ranks of x and y change.
Also, r(y)  r(y) and r(x)  r(x). Thus,
 = r(x) + r(y) – r(x) – r(y)
 r(x) – r(x)
 3(r(x) – r(x)).
20
10
T1 T2 T3 T4
x
y 30w
10
20
30
T3 T4
T2
T1
y
x
w
Proposition
Proposition : Let T be a splay tree with root t, and let  be the
total variation of r(T) caused by splaying a node x at depth d. The
  3(r(t)  r(x))  d + 2.
Proof:
Splay(x) consists of p = d/2 substeps, each of which is a zig-
zig or
zig-zag, except possibly the last one, which is a zig if d is odd.
Let r0(x) = x’s initial rank, ri(x) = x’s rank after the ith substep, and
i = the variation of r(T) caused by the ith substep, where 1  i 
p.
By Proposition
 
2dr(x))3(r(t)
22p(x))r(x)3(r
22(x))r(x)3(rδΔ
0p
p
1i
1ii
p
1i
i


  


Meaning of Proposition
● If d is small (less than 3(r(t)  r(x)) + 2) then
the splay operation can increase r(t) and thus
make the tree less balanced.
● If d is larger than this, then the splay operation
decreases r(t) and thus makes the tree better
balanced.
● Note that r(t)  3lg(2n + 1)
Comparisons
Advantages:
■ The amortized run times are similar to that of
AVL trees and red-black trees
■ The implementation is easier
■ No additional information (height/colour) is
required
Disadvantages:
■ The tree will change with read-only operations
Lists
Move-to-Front
Search Trees
Binary Search Trees Multi-Way Search Trees
B-trees
Splay Trees 2-3-4 TreesRed-Black Trees
SELF ADJUSTING WORST-CASE EFFICIENT
competitive competitive?
Linear ListsMulti-Lists
Hash Tables
DICTIONARIES
70

More Related Content

What's hot

Red black tree
Red black treeRed black tree
Red black treeRajendran
 
1.5 binary search tree
1.5 binary search tree1.5 binary search tree
1.5 binary search treeKrish_ver2
 
Data Structure and Algorithms Binary Search Tree
Data Structure and Algorithms Binary Search TreeData Structure and Algorithms Binary Search Tree
Data Structure and Algorithms Binary Search TreeManishPrajapati78
 
Lec 17 heap data structure
Lec 17 heap data structureLec 17 heap data structure
Lec 17 heap data structureSajid Marwat
 
Bubble sort
Bubble sortBubble sort
Bubble sortManek Ar
 
Data structure tries
Data structure triesData structure tries
Data structure triesMd. Naim khan
 
Breadth first search and depth first search
Breadth first search and  depth first searchBreadth first search and  depth first search
Breadth first search and depth first searchHossain Md Shakhawat
 
Splay Tree Algorithm
Splay Tree AlgorithmSplay Tree Algorithm
Splay Tree Algorithmsathish sak
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search TreeZafar Ayub
 
linear search and binary search
linear search and binary searchlinear search and binary search
linear search and binary searchZia Ush Shamszaman
 
B trees in Data Structure
B trees in Data StructureB trees in Data Structure
B trees in Data StructureAnuj Modi
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search TreeAbhishek L.R
 

What's hot (20)

Red black tree
Red black treeRed black tree
Red black tree
 
1.5 binary search tree
1.5 binary search tree1.5 binary search tree
1.5 binary search tree
 
Data Structure and Algorithms Binary Search Tree
Data Structure and Algorithms Binary Search TreeData Structure and Algorithms Binary Search Tree
Data Structure and Algorithms Binary Search Tree
 
Lec 17 heap data structure
Lec 17 heap data structureLec 17 heap data structure
Lec 17 heap data structure
 
Balanced Tree (AVL Tree & Red-Black Tree)
Balanced Tree (AVL Tree & Red-Black Tree)Balanced Tree (AVL Tree & Red-Black Tree)
Balanced Tree (AVL Tree & Red-Black Tree)
 
BINARY SEARCH TREE
BINARY SEARCH TREEBINARY SEARCH TREE
BINARY SEARCH TREE
 
Binary Tree Traversal
Binary Tree TraversalBinary Tree Traversal
Binary Tree Traversal
 
Bubble sort
Bubble sortBubble sort
Bubble sort
 
Heaps
HeapsHeaps
Heaps
 
Tree - Data Structure
Tree - Data StructureTree - Data Structure
Tree - Data Structure
 
Graph traversals in Data Structures
Graph traversals in Data StructuresGraph traversals in Data Structures
Graph traversals in Data Structures
 
Data structure tries
Data structure triesData structure tries
Data structure tries
 
Breadth first search and depth first search
Breadth first search and  depth first searchBreadth first search and  depth first search
Breadth first search and depth first search
 
DFS and BFS
DFS and BFSDFS and BFS
DFS and BFS
 
Splay Tree Algorithm
Splay Tree AlgorithmSplay Tree Algorithm
Splay Tree Algorithm
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search Tree
 
linear search and binary search
linear search and binary searchlinear search and binary search
linear search and binary search
 
B trees in Data Structure
B trees in Data StructureB trees in Data Structure
B trees in Data Structure
 
sorting and its types
sorting and its typessorting and its types
sorting and its types
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search Tree
 

Viewers also liked

A novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithmA novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithmDr Sandeep Kumar Poonia
 
Modified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithmModified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithmDr Sandeep Kumar Poonia
 
Enhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithmEnhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithmDr Sandeep Kumar Poonia
 
Sunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithmSunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithmDr Sandeep Kumar Poonia
 
Memetic search in differential evolution algorithm
Memetic search in differential evolution algorithmMemetic search in differential evolution algorithm
Memetic search in differential evolution algorithmDr Sandeep Kumar Poonia
 
An improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithmAn improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithmDr Sandeep Kumar Poonia
 
Comparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithmComparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithmDr Sandeep Kumar Poonia
 
Splay trees by NIKHIL ARORA (www.internetnotes.in)
Splay trees by NIKHIL ARORA (www.internetnotes.in)Splay trees by NIKHIL ARORA (www.internetnotes.in)
Splay trees by NIKHIL ARORA (www.internetnotes.in)nikhilarora2211
 
Multiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked listsMultiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked listsDr Sandeep Kumar Poonia
 

Viewers also liked (18)

Lecture24
Lecture24Lecture24
Lecture24
 
A novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithmA novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithm
 
Modified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithmModified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithm
 
Enhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithmEnhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithm
 
Sunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithmSunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithm
 
Memetic search in differential evolution algorithm
Memetic search in differential evolution algorithmMemetic search in differential evolution algorithm
Memetic search in differential evolution algorithm
 
Lecture25
Lecture25Lecture25
Lecture25
 
An improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithmAn improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithm
 
Lecture27 linear programming
Lecture27 linear programmingLecture27 linear programming
Lecture27 linear programming
 
Comparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithmComparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithm
 
Splay tree
Splay treeSplay tree
Splay tree
 
RMABC
RMABCRMABC
RMABC
 
Splay trees by NIKHIL ARORA (www.internetnotes.in)
Splay trees by NIKHIL ARORA (www.internetnotes.in)Splay trees by NIKHIL ARORA (www.internetnotes.in)
Splay trees by NIKHIL ARORA (www.internetnotes.in)
 
Multiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked listsMultiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked lists
 
2-3 Tree
2-3 Tree2-3 Tree
2-3 Tree
 
Lecture26
Lecture26Lecture26
Lecture26
 
Soft computing
Soft computingSoft computing
Soft computing
 
Lecture28 tsp
Lecture28 tspLecture28 tsp
Lecture28 tsp
 

Similar to Splay Tree

CSE680-07QuickSort.pptx
CSE680-07QuickSort.pptxCSE680-07QuickSort.pptx
CSE680-07QuickSort.pptxDeepakM509554
 
ICPC 2015, Tsukuba : Unofficial Commentary
ICPC 2015, Tsukuba: Unofficial CommentaryICPC 2015, Tsukuba: Unofficial Commentary
ICPC 2015, Tsukuba : Unofficial Commentaryirrrrr
 
MinFill_Presentation
MinFill_PresentationMinFill_Presentation
MinFill_PresentationAnna Lasota
 
Introduction to Algorithms
Introduction to AlgorithmsIntroduction to Algorithms
Introduction to Algorithmspppepito86
 
Unit-1 Basic Concept of Algorithm.pptx
Unit-1 Basic Concept of Algorithm.pptxUnit-1 Basic Concept of Algorithm.pptx
Unit-1 Basic Concept of Algorithm.pptxssuser01e301
 
MODULE_05-Matrix Decomposition.pptx
MODULE_05-Matrix Decomposition.pptxMODULE_05-Matrix Decomposition.pptx
MODULE_05-Matrix Decomposition.pptxAlokSingh205089
 
Theoryofcomp science
Theoryofcomp scienceTheoryofcomp science
Theoryofcomp scienceRaghu nath
 
Overlay Stitch Meshing
Overlay Stitch MeshingOverlay Stitch Meshing
Overlay Stitch MeshingDon Sheehy
 
Design and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture NotesDesign and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture NotesSreedhar Chowdam
 
Analysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysisAnalysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysisRadhika Talaviya
 
2 random variables notes 2p3
2 random variables notes 2p32 random variables notes 2p3
2 random variables notes 2p3MuhannadSaleh
 

Similar to Splay Tree (20)

CSE680-07QuickSort.pptx
CSE680-07QuickSort.pptxCSE680-07QuickSort.pptx
CSE680-07QuickSort.pptx
 
ICPC 2015, Tsukuba : Unofficial Commentary
ICPC 2015, Tsukuba: Unofficial CommentaryICPC 2015, Tsukuba: Unofficial Commentary
ICPC 2015, Tsukuba : Unofficial Commentary
 
Stochastic Process Assignment Help
Stochastic Process Assignment HelpStochastic Process Assignment Help
Stochastic Process Assignment Help
 
MinFill_Presentation
MinFill_PresentationMinFill_Presentation
MinFill_Presentation
 
Stochastic Process Exam Help
Stochastic Process Exam HelpStochastic Process Exam Help
Stochastic Process Exam Help
 
Introduction to Algorithms
Introduction to AlgorithmsIntroduction to Algorithms
Introduction to Algorithms
 
Algorithms - "quicksort"
Algorithms - "quicksort"Algorithms - "quicksort"
Algorithms - "quicksort"
 
Unit-1 Basic Concept of Algorithm.pptx
Unit-1 Basic Concept of Algorithm.pptxUnit-1 Basic Concept of Algorithm.pptx
Unit-1 Basic Concept of Algorithm.pptx
 
CLIM Fall 2017 Course: Statistics for Climate Research, Spatial Data: Models ...
CLIM Fall 2017 Course: Statistics for Climate Research, Spatial Data: Models ...CLIM Fall 2017 Course: Statistics for Climate Research, Spatial Data: Models ...
CLIM Fall 2017 Course: Statistics for Climate Research, Spatial Data: Models ...
 
Ppt 1
Ppt 1Ppt 1
Ppt 1
 
Topological Sort
Topological SortTopological Sort
Topological Sort
 
MODULE_05-Matrix Decomposition.pptx
MODULE_05-Matrix Decomposition.pptxMODULE_05-Matrix Decomposition.pptx
MODULE_05-Matrix Decomposition.pptx
 
Theoryofcomp science
Theoryofcomp scienceTheoryofcomp science
Theoryofcomp science
 
Sorting2
Sorting2Sorting2
Sorting2
 
heapsort_bydinesh
heapsort_bydineshheapsort_bydinesh
heapsort_bydinesh
 
Overlay Stitch Meshing
Overlay Stitch MeshingOverlay Stitch Meshing
Overlay Stitch Meshing
 
Design and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture NotesDesign and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture Notes
 
Asymptotic notation
Asymptotic notationAsymptotic notation
Asymptotic notation
 
Analysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysisAnalysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysis
 
2 random variables notes 2p3
2 random variables notes 2p32 random variables notes 2p3
2 random variables notes 2p3
 

More from Dr Sandeep Kumar Poonia

More from Dr Sandeep Kumar Poonia (14)

Improved onlooker bee phase in artificial bee colony algorithm
Improved onlooker bee phase in artificial bee colony algorithmImproved onlooker bee phase in artificial bee colony algorithm
Improved onlooker bee phase in artificial bee colony algorithm
 
New Local Search Strategy in Artificial Bee Colony Algorithm
New Local Search Strategy in Artificial Bee Colony Algorithm New Local Search Strategy in Artificial Bee Colony Algorithm
New Local Search Strategy in Artificial Bee Colony Algorithm
 
A new approach of program slicing
A new approach of program slicingA new approach of program slicing
A new approach of program slicing
 
Performance evaluation of different routing protocols in wsn using different ...
Performance evaluation of different routing protocols in wsn using different ...Performance evaluation of different routing protocols in wsn using different ...
Performance evaluation of different routing protocols in wsn using different ...
 
Enhanced abc algo for tsp
Enhanced abc algo for tspEnhanced abc algo for tsp
Enhanced abc algo for tsp
 
Database aggregation using metadata
Database aggregation using metadataDatabase aggregation using metadata
Database aggregation using metadata
 
Performance evaluation of diff routing protocols in wsn using difft network p...
Performance evaluation of diff routing protocols in wsn using difft network p...Performance evaluation of diff routing protocols in wsn using difft network p...
Performance evaluation of diff routing protocols in wsn using difft network p...
 
Lecture23
Lecture23Lecture23
Lecture23
 
Problems in parallel computations of tree functions
Problems in parallel computations of tree functionsProblems in parallel computations of tree functions
Problems in parallel computations of tree functions
 
Parallel Algorithms
Parallel AlgorithmsParallel Algorithms
Parallel Algorithms
 
Parallel Algorithms
Parallel AlgorithmsParallel Algorithms
Parallel Algorithms
 
Parallel Algorithms
Parallel AlgorithmsParallel Algorithms
Parallel Algorithms
 
Network flow problems
Network flow problemsNetwork flow problems
Network flow problems
 
Shortest Path in Graph
Shortest Path in GraphShortest Path in Graph
Shortest Path in Graph
 

Recently uploaded

MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 

Recently uploaded (20)

MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 

Splay Tree

  • 2. Splay Trees ● In balanced tree schemes, explicit rules are followed to ensure balance. ● In splay trees, there are no such rules. ● Search, insert, and delete operations are like in binary search trees, except at the end of each operation a special step called splaying is done. ● Splaying ensures that all operations take O(lg n) amortized time. ● First, a quick review of BST operations…
  • 3. BST: Search 44 8817 65 9732 28 54 82 7629 80 Note: In the handout, sentinel leaf nodes are assumed.  tree with n keys has 2n+1 nodes. Search(25) Search(76)
  • 4. BST: Insert 44 8817 65 9732 28 54 82 7629 80 Insert(78) 78
  • 5. BST: Delete 44 8817 65 9732 28 54 82 7629 80 78 Delete(32) Has only one child: just splice out 32.
  • 6. BST: Delete 44 8817 65 9728 54 82 76 29 80 78 Delete(32)
  • 7. BST: Delete 44 8817 65 9732 28 54 82 7629 80 78 Delete(65) Has two children: Replace 65 by successor, 76, and splice out successor. Note: Successor can have at most one child. (Why?)
  • 8. BST: Delete 44 8817 76 9732 28 54 82 29 80 78 Delete(65)
  • 9. Splaying ● In splay trees, after performing an ordinary BST Search, Insert, or Delete, a splay operation is performed on some node x (as described later). ● The splay operation moves x to the root of the tree. ● The splay operation consists of sub-operations called zig-zig, zig-zag, and zig.
  • 10. Zig-Zig 10 20 30 T3 T4 T2 T1 z y x 30 20 10 T1 T2 T3 T4 x y z (Symmetric case too) Note: x’s depth decreases by two. x has a grandparent
  • 11. Zig-Zag 10 30 20 T3 T4 T2 T1 z y x 20 10 T1 T2 T3 T4 x z (Symmetric case too) Note: x’s depth decreases by two. 30 y x has a grandparent
  • 12. Zig 20 10 T1 T2 T3 T4 x y (Symmetric case too) Note: x’s depth decreases by one. 30 w 10 20 30 T3 T4 T2 T1 y x w x has no grandparent (so, y is the root) Note: w could be NIL
  • 13. Top Down Splay Trees ● Works by starting at the top and working down to produce a similar result. ● All of the nodes lower than the target are put into one tree and all of the nodes greater than the target are put into another tree then it is recombined.
  • 17. Complete Example 44 8817 65 9732 28 54 82 7629 80 78 Splay(78) 50 x y z zig-zag
  • 18. Complete Example 44 8817 65 9732 28 54 82 7829 8076 Splay(78) 50 zig-zag x yz
  • 19. Complete Example 44 8817 65 9732 28 54 82 7829 8076 Splay(78) 50 x y z zig-zag
  • 25. Result of splaying ● The result is a binary tree, with the left subtree having all keys less than the root, and the right subtree having keys greater than the root. ● Also, the final tree is “more balanced” than the original. ● However, if an operation near the root is done, the tree can become less balanced.
  • 26. When to Splay ● Search: ■ Successful: Splay node where key was found. ■ Unsuccessful: Splay last-visited internal node (i.e., last node with a key). ● Insert: ■ Splay newly added node. ● Delete: ■ Splay parent of removed node (which is either the node with the deleted key or its successor). ● Note: All operations run in O(h) time, for a tree of height h.
  • 27. Examples With a little consideration, it becomes obvious that inserting 1 through 10, in that order, will produce the splay tree
  • 28. Examples We will repeatedly access the deepest node in the tree ■ With each operation, this node will be splayed to the root ■ We begin with a zig-zig rotation
  • 29. Examples This is followed by another zig-zig operation...
  • 32. Examples At this point, this requires a single zig operation to bring 1 to the root
  • 33. Examples The height of this tree is now 6 and no longer 9
  • 34. Examples The deepest node is now 3: ■ This node must be splayed to the root beginning with a zig-zag operation
  • 35. Examples The node 3 is rotated up ■ Next we require a zig-zig operation
  • 36. Examples Finally, to bring 3 to the root, we need a zig-zag operation
  • 37. Examples The height of this tree is only 4
  • 38. Examples Of the three deepest nodes, 9 requires a zig-zig operation, so will access it next ■ The zig-zig operation will push 6 and its left sub-tree down
  • 39. Examples This is closer to a linked list; however, we’re not finished ■ A zig-zag operation will move 9 to the root
  • 40. Examples In this case, the height of the tree is now greater: 5
  • 41. Examples Accessing the deepest node, 5, we must begin with a zig-zag operation
  • 42. Examples Next, we require a zig-zag operation to move 5 to the location of 3
  • 43. Examples Finally, we require a single zig operation to move 5 to the root
  • 44. Examples The height of the tree is 4; however, 7 of the nodes form a perfect tree at the root
  • 45. Examples Accessing 7 will require two zig-zag operations
  • 46. Examples The first zig-zag moves it to depth 2
  • 47. Examples 7 is promoted to the root through a zig-zag operation
  • 48. Examples Finally, accessing 2, we first require a zig- zag operation
  • 49. Examples This now requires a zig-zig operation to promote 2 to the root
  • 50. Examples In this case, with 2 at the root, 3-10 must be in the right sub-tree ■ The right sub-tree happens to be AVL balanced
  • 51. Examples To remove a node, for example, 6, splay it to the root ■ First we require a zig-zag operation
  • 52. Examples At this point, we need a zig operation to move 6 to the root
  • 53. Examples We will now copy the minimum element from the right sub-tree ■ In this case, the node with 7 has a single sub- tree, we will simply move it up
  • 54. Examples Thus, we have removed 6 and the resulting tree is, again, reasonably balanced
  • 55. Amortized Analysis ● Based on the Accounting Method ■ Idea: When an operation’s amortized cost exceeds it actual cost, the difference is assigned to certain tree nodes as credit. ■ Credit is used to pay for subsequent operations whose amortized cost is less than their actual cost. ● Most of our analysis will focus on splaying. ■ The BST operations will be easily dealt with at the end.
  • 56. Review: Accounting Method ● Stack Example: ■ Operations: ○ Push(S, x). ○ Pop(S). ○ Multipop(S, k): if stack has s items, pop off min(s, k) items. s ≥ k items s  k items Multipop(S, k) Multipop(S, k) s – k items 0 items Can implement in O(1) time.
  • 57. Accounting Method (Continued) ● We charge each operation an amortized cost. ● Charge may be more or less than actual cost. ● If more, then we have credit. ● This credit can be used to pay for future operations whose amortized cost is less than their actual cost. ● Require: For any sequence of operations, amortized cost upper bounds worst-case cost. ■ That is, we always have nonnegative credit.
  • 58. Accounting Method (Continued) Stack Example: Actual Costs: Push: 1 Pop: 1 Multipop: min(s, k) Amortized Costs: Push: 2 Pop: 0 Multipop: 0 Pays for the push and a future pop. All O(1). For a sequence of n operations, does total amortized cost upper bound total worst-case cost, as required? What is the total worst- case cost of the sequence?
  • 59. Ranks ● T is a splay tree with n keys. ● Definition: The size of node v in T, denoted n(v), is the number of nodes in the subtree rooted at v. ■ Note: The root is of size 2n+1. ● Definition: The rank of v, denoted r(v), is lg(n(v)). ■ Note: The root has rank lg(2n+1). ● Definition: r(T) = vT r(v).
  • 60. Meaning of Ranks ● The rank of a tree is a measure of how well balanced it is. ● A well balanced tree has a low rank. ● A badly balanced tree has a high rank. ● The splaying operations tend to make the rank smaller, which balances the tree and makes other operations faster. ● Some operations near the root may make the rank larger and slightly unbalance the tree. ● Amortized analysis is used on splay trees, with the rank of the tree being the potential
  • 61. Credit Invariant ● We will define amortized costs so that the following invariant is maintained. ■ So, each operation’s amortized cost = its real cost + the total change in r(T) it causes (positive or negative). ● Let Ri = op. i’s real cost and i = change in r(T) it causes. Total am. cost = i=1,…,n (Ri + i). Initial tree has rank 0 & final tree has non-neg. rank. So, i=1,…n i  0, which implies total am. cost  total real cost. Each node v of T has r(v) credits in its account.
  • 62. What’s Left? ● We want to show that the per-operation amortized cost is logarithmic. ● To do this, we need to look at how BST operations and splay operations affect r(T). ■ We spend most of our time on splaying, and consider the specific BST operations later. ● To analyze splaying, we first look at how r(T) changes as a result of a single substep, i.e., zig, zig- zig, or zig-zag. ■ Notation: Ranks before and after a substep are denoted r(v) and r(v), respectively.
  • 63. Proposition Proposition : Let  be the change in r(T) caused by a single substep. Let x be the “x” in our descriptions of these substeps. Then, •   3(r(x)  r(x))  2 if the substep is a zig-zig or a zig- zag; •   3(r(x)  r(x)) if the substep is a zig. Proof: Three cases, one for each kind of substep…
  • 64. Case 1: zig-zig 10 20 30 T3 T4 T2 T1 z y x 30 20 10 T1 T2 T3 T4 x y z Only the ranks of x, y, and z change. Also, r(x) = r(z), r(y)  r(x), and r(y)  r(x). Thus,  = r(x) + r(y) + r(z) – r(x) – r(y) – r(z) = r(y) + r(z) – r(x) – r(y)  r(x) + r(z) – 2r(x). (1) Also, n(x) + n(z)  n(x), which (by property of lg), implies r(x) + r(z)  2r(x) – 2, i.e., r(z)  2r(x) – r(x) – 2. (2) By (1) and (2),   r(x) + (2r(x) – r(x) – 2) – 2r(x) = 3(r(x) – r(x)) – 2. If a > 0, b > 0, and c  a + b, then lg a + lg b  2 lg c – 2.
  • 65. Case 2: zig-zag Only the ranks of x, y, and z change. Also, r(x) = r(z) and r(x)  r(y). Thus,  = r(x) + r(y) + r(z) – r(x) – r(y) – r(z) = r(y) + r(z) – r(x) – r(y)  r(y) + r(z) – 2r(x). (1) Also, n(y) + n(z)  n(x), which (by property of lg), implies r(y) + r(z)  2r(x) – 2. (2) By (1) and (2),   2r(x) – 2 – 2r(x)  3(r(x) – r(x)) – 2. 10 30 20 T3 T4 T2 T1 z y x 20 10 T1 T2 T3 T4 x z 30y
  • 66. Case 3: zig Only the ranks of x and y change. Also, r(y)  r(y) and r(x)  r(x). Thus,  = r(x) + r(y) – r(x) – r(y)  r(x) – r(x)  3(r(x) – r(x)). 20 10 T1 T2 T3 T4 x y 30w 10 20 30 T3 T4 T2 T1 y x w
  • 67. Proposition Proposition : Let T be a splay tree with root t, and let  be the total variation of r(T) caused by splaying a node x at depth d. The   3(r(t)  r(x))  d + 2. Proof: Splay(x) consists of p = d/2 substeps, each of which is a zig- zig or zig-zag, except possibly the last one, which is a zig if d is odd. Let r0(x) = x’s initial rank, ri(x) = x’s rank after the ith substep, and i = the variation of r(T) caused by the ith substep, where 1  i  p. By Proposition   2dr(x))3(r(t) 22p(x))r(x)3(r 22(x))r(x)3(rδΔ 0p p 1i 1ii p 1i i       
  • 68. Meaning of Proposition ● If d is small (less than 3(r(t)  r(x)) + 2) then the splay operation can increase r(t) and thus make the tree less balanced. ● If d is larger than this, then the splay operation decreases r(t) and thus makes the tree better balanced. ● Note that r(t)  3lg(2n + 1)
  • 69. Comparisons Advantages: ■ The amortized run times are similar to that of AVL trees and red-black trees ■ The implementation is easier ■ No additional information (height/colour) is required Disadvantages: ■ The tree will change with read-only operations
  • 70. Lists Move-to-Front Search Trees Binary Search Trees Multi-Way Search Trees B-trees Splay Trees 2-3-4 TreesRed-Black Trees SELF ADJUSTING WORST-CASE EFFICIENT competitive competitive? Linear ListsMulti-Lists Hash Tables DICTIONARIES 70