Codes();

Zoom out : CTRTL -

Zoom in : CTRTL +

Splay Tree

You can start with inserting elements into
Splay Tree.

Insert value in Splay Tree.

Splayinsert(value)

Delete value in Splay Tree.

Splaydelete(value)

Search for an item in Splay Tree.

Splaysearch(item)

Preorder Tree traversal (Node-Left-Right).

preorder(root)

Inorder Tree traversal (Left-Node-Right).

inorder(root)

Postorder Tree traversal (Left-Right-Node).

postorder(root)

Levelorder Tree traversal (Breadth First Traversal) using queue.

levelorder(root)