InterviewSolution
Saved Bookmarks
| 1. |
The self organizing list improves _____(a) average access time(b) insertion(c) deletion(d) binary searchThis question is from Types of Lists topic in division Types of Lists of Data Structures & Algorithms IThis question was posed to me during an online exam. |
|
Answer» RIGHT option is (a) average access time Easy explanation - The self-organizing list rearranges the nodes based on the access PROBABILITIES of the nodes. So the required ELEMENTS can be LOCATED efficiently. Therefore, self-organizing list is mainly used to improve the average access time. |
|