Problem 48

This is the archived version of this course from the Spring 2013 semester. You might find something more recent by visitning my teaching page.

Search in a randomized BST

Due: March 1
Points: 1

A randomized BST is a data structure for the dictionary ADT that should support three operations: search, insert, and delete. But in class we only talked about how insertion works in a randomized BST.

Come up with a way to do search, to guarantee an expected time performance that is the same as a balanced binary search tree like AVL or 2-3 trees.