previous | start | next

Summary Method Performance Comparison

For Worst Case Performance

Method SequentialSearchST BinarySearchST
put(k, v) O(N) O(N)
v = get(k) O(N) O(log(N))
delete(k) O(N) O(N)


previous | start | next