Design Skiplist at eBay
Hard59.1% acceptance
This problem has 87.5% frequency at eBay.
Problem Description
Design a **Skiplist** without using any built-in libraries. A **skiplist** is a data structure that takes `O(log(n))` time to add, erase and search. Comparing with treap and red-black tree which has the same function and performance, the code length of Skiplist can be comparatively short and the id...
Read full problem and hintsTopics
Also asked at 5 companies
More eBay Questions
LRU CacheMediumTime Based Key-Value StoreMediumMerge k Sorted ListsHardDesign a Stack With Increment OperationMediumPalindrome Linked ListEasy
View all eBay questions