Define splay tree.
3 years ago
Data Structure and Algorithm
A splay tree is a binary search tree in which restructuring is done using a scheme called splay. The splay is a heuristic method which moves a given vertex v to the root of the splay tree using a sequence of rotations.
Sanisha Maharjan
Jan 23, 2022