InterviewSolution
Saved Bookmarks
| 1. |
The nodes in a skip list may have many forward references. their number is determined(a) probabilistically(b) randomly(c) sequentially(d) orthogonallyAsked question is from Skip List in chapter Types of Lists of Data Structures & Algorithms IThis question was posed to me in examination. |
|
Answer» RIGHT ANSWER is (a) probabilistically Easy explanation - The number of forward references are determined probabilistically, that is why SKIP list is a probabilistic algorithm. |
|