
|
- Label the pointers from 0-N
- Is the key you want smaller than the first key?
YES - follow pointer 0
NO - go to 3.
- Is the key >= (greater than or equal) the first key but
smaller than the second
YES - follow pointer 1
NO - follow the next highest pointer
|