Skip to content

Tag Archives: splay-tree

Consider a problem where same elements are likely to be searched again and again. Implement search operation efficiently.  Examples :  Input : arr[] = {12… Read More
It is recommended to refer following post as prerequisite of this post.Splay Tree | Set 1 (Search)As discussed in the previous post, Splay tree is… Read More
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.… Read More

Start Your Coding Journey Now!