Abstract

Kakkot list is a new data structure used for quick searching in a well ordered sequence of list like Skip list. This ordered sequence of list is created using linked list data structure and the maximum number of levels here will be limited to log n in all input behavioral cases. The maximum number of items in each level is halved to that of previous levels and thus guarantees a fast searching in a list. The basic difference between Kakkot list and Skip list lies in the creation of levels and decision of when an item has to be included in the higher levels. In skip list the levels are created and items are added to each level during the insertion of an item where as in Kakkot list this will be done at the time of searching an item. This modification have made drastic impact in searching time complexity in the Kakkot list. Another issue in Skip list is that it is not cache friendly and does not optimize locality of reference wherein this problem is also addressed in Kakkot List.

Full Text
Paper version not known

Talk to us

Join us for a 30 min session where you can share your feedback and ask us any queries you have

Schedule a call