VOOZH about

URL: https://www.geeksforgeeks.org/dsa/searching-in-splay-tree/

⇱ Searching in Splay Tree - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Searching in Splay Tree

Last Updated : 23 Jul, 2025

Splay Tree-

Splay tree is a binary search tree. In a splay tree, M consecutive operations can be performed in O (M log N) time.

A single operation may require O(N) time but average time to perform M operations will need O (M Log N) time.

When a node is accessed, it is moved to the top through a set of operations known as splaying. Splaying technique is similar to rotation in an AVL tree. This will make the future access of the node cheaper.

Unlike AVL tree, splay trees do not have the requirement of storing Balance Factor of every node. This saves the space and simplifies algorithm to a great extent.

There are two standard techniques of splaying.

1. Bottom up Splaying

2. Top Down Splaying

1. Bottom up Splaying:-

Idea behind bottom up splaying is explained below: Rotation is performed bottom up along the access path.

Let X be a (non root) node on the access path at which we are rotating.

a) If the parent of X is the root of the tree, rotate X and the parent of X. This will be the last rotation required.

b) If X has both a parent (P) and Grand parent (G) then like an AVL tree there could be four cases.

1. X is a left child and P is a left child.

2. X is a left child and P is right child

3. X is a right child and P is a left child

4. X is a right child and P is a right child.

2.Top Down Splaying:-

When an item X is inserted as a leaf, a series of tree rotations brings X at the root. These rotations are known as splaying. A splay is also performed during searches, and if an item is not found, a splay is performed on the last node on the access path.

A top down traversal is performed to locate the leaf node.

Splaying is done using bottom up traversal.

This can be done by storing the access path, during top down traversal on a stack.

Top down splaying is based on splaying on the initial traversal path. A stack is not required to save the traversal path.

1. A current node X that is the root of its sub tree and represented as the "middle" tree.

2. Tree L stores nodes in the tree T that are less than X, but not in the X's sub tree.

3. Tree R stores nodes in the tree T that are larger than X, but not in X's sub tree.

4. Initially, X is the root of T, and L and R are empty.

The worst case time complexity of Binary Search Tree (BST) operations like search, delete, insert is O(n). The worst case occurs when the tree is skewed. We can get the worst case time complexity as O(Logn) with AVL and Red-Black Trees. 
Can we do better than AVL or Red-Black trees in practical situations? 
Like AVL and Red-Black Trees, Splay tree is also self-balancing BST. The main idea of splay tree is to bring the recently accessed item to root of the tree, this makes the recently searched item to be accessible in O(1) time if accessed again. The idea is to use locality of reference (In a typical application, 80% of the access are to 20% of the items). Imagine a situation where we have millions or billions of keys and only few of them are accessed frequently, which is very likely in many practical applications.
All splay tree operations run in O(log n) time on average, where n is the number of entries in the tree. Any single operation can take Theta(n) time in the worst case.
Search Operation 
The search operation in Splay tree does the standard BST search, in addition to search, it also splays (move a node to the root). If the search is successful, then the node that is found is splayed and becomes the new root. Else the last node accessed prior to reaching the NULL is splayed and becomes the new root.
There are following cases for the node being accessed.
1) Node is root We simply return the root, don't do anything else as the accessed node is already root.
2) Zig: Node is child of root (the node has no grandparent). Node is either a left child of root (we do a right rotation) or node is a right child of its parent (we do a left rotation). 
T1, T2 and T3 are subtrees of the tree rooted with y (on left side) or x (on right side) 
 

 y x
 / \ Zig (Right Rotation) / \
 x T3 – - – - – - – - - -> T1 y 
 / \ < - - - - - - - - - / \
 T1 T2 Zag (Left Rotation) T2 T3


3) Node has both parent and grandparent. There can be following subcases. 
........3.a) Zig-Zig and Zag-Zag Node is left child of parent and parent is also left child of grand parent (Two right rotations) OR node is right child of its parent and parent is also right child of grand parent (Two Left Rotations). 
 

Zig-Zig (Left Left Case):
 G P X 
 / \ / \ / \ 
 P T4 rightRotate(G) X G rightRotate(P) T1 P 
 / \ ============> / \ / \ ============> / \ 
 X T3 T1 T2 T3 T4 T2 G
 / \ / \ 
 T1 T2 T3 T4 

Zag-Zag (Right Right Case):
 G P X 
 / \ / \ / \ 
T1 P leftRotate(G) G X leftRotate(P) P T4
 / \ ============> / \ / \ ============> / \ 
 T2 X T1 T2 T3 T4 G T3
 / \ / \ 
 T3 T4 T1 T2


........3.b) Zig-Zag and Zag-Zig Node is right child of parent and parent is left child of grand parent (Left Rotation followed by right rotation) OR node is left child of its parent and parent is right child of grand parent (Right Rotation followed by left rotation). 
 

Zag-Zig (Left Right Case):
 G G X 
 / \ / \ / \ 
 P T4 leftRotate(P) X T4 rightRotate(G) P G 
 / \ ============> / \ ============> / \ / \ 
 T1 X P T3 T1 T2 T3 T4 
 / \ / \ 
 T2 T3 T1 T2 

Zig-Zag (Right Left Case):
 G G X 
 / \ / \ / \ 
T1 P rightRotate(P) T1 X leftRotate(G) G P
 / \ =============> / \ ============> / \ / \ 
 X T4 T2 P T1 T2 T3 T4
 / \ / \ 
 T2 T3 T3 T4 


Example: 
 

 
 100 100 [20]
 / \ / \ \ 
 50 200 50 200 50
 / search(20) / search(20) / \ 
 40 ======> [20] ========> 30 100
 / 1. Zig-Zig \ 2. Zig-Zig \ \
 30 at 40 30 at 100 40 200 
 / \ 
[20] 40


The important thing to note is, the search or splay operation not only brings the searched key to root, but also balances the BST. For example in above case, height of BST is reduced by 1.
Implementation: 
 

Output: 

Preorder traversal of the modified Splay tree is
20 50 30 40 100 200

Time complexity - The time complexity of splay tree operations depends on the height of the tree, which is usually O(log n) in the average case, where n is the number of nodes in the tree. However, in the worst case, the tree can degenerate into a linear chain, resulting in O(n) time complexity for certain operations.

Space complexity -The space complexity of the splay tree depends on the number of nodes in the tree. In the worst case, when the tree degenerates into a linear chain, the space complexity is O(n). However, in the average case, it is O(n log n).
Summary 
1) Splay trees have excellent locality properties. Frequently accessed items are easy to find. Infrequent items are out of way.
2) All splay tree operations take O(Logn) time on average. Splay trees can be rigorously shown to run in O(log n) average time per operation, over any sequence of operations (assuming we start from an empty tree)
3) Splay trees are simpler compared to AVL and Red-Black Trees as no extra field is required in every tree node.
4) Unlike AVL tree, a splay tree can change even with read-only operations like search.
Applications of Splay Trees 
Splay trees have become the most widely used basic data structure invented in the last 30 years, because they're the fastest type of balanced search tree for many applications. 
Splay trees are used in Windows NT (in the virtual memory, networking, and file system code), the gcc compiler and GNU C++ library, the sed string editor, For Systems network routers, the most popular implementation of Unix malloc, Linux loadable kernel modules, and in much other software.
See Splay Tree | Set 2 (Insert) for splay tree insertion.

Advantages of Splay Trees:

  • Useful for implementing caches and garbage collection algorithms.
  • Require less space as there is no balance information is required.
  • Splay trees provide good performance with nodes containing identical keys.

Disadvantages of Splay Trees:

  • The height of a splay tree can be linear when accessing elements in non decreasing order.
  • The performance of a splay tree will be worse than a balanced simple binary search tree in case of uniform access.


 

Comment