First of all, I do not know very much about skip-lists, I am just trying to prepare for my exam. What is the frequency of the elements for optimal search (log(n)) on each level when having log(n) lists in a skiplist ? I know that when working with 2 lists, the first has n elements, and the second one has sqrt(n) elements. So, when searching for an element I do at most sqrt(n) steps on the second list (that above), and sqrt(n) steps in the first list (the one that contains all the elements) because the gaps between elements are sqrt(n)-long. So that seems ok. But how many elements does each list have when working with log(n) lists ?
1
There are 1 best solutions below
Related Questions in SKIP-LISTS
- C++ using std::vector across boundaries
- Linked list without struct
- Connecting Signal QML to C++ (Qt5)
- how to get the reference of struct soap inherited in C++ Proxy/Service class
- Why we can't assign value to pointer
- Conversion of objects in c++
- shared_ptr: "is not a type" error
- C++ template using pointer and non pointer arguments in a QVector
- C++ SFML 2.2 vectors
- Lifetime of temporary objects
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
When an element is added to a skip list "a coin is flipped" several times to decide in how many layers the new element should be included. The element is always added to the first (lowest) layer and then added to the next layer above each time the coin lands on heads. If we call the probability of getting heads in a coin flip p (commonly p = 0.5 is used), each element is added with probability 1 to the first layer, with probability p to the second layer, with probability p^2 to the third layer and in general with probability p^(i-1) to the i-th layer. If the skip list contains n elements, the second layer contains n*p elements in expectation (not sqrt(n)), the third layer n*p^2 elements and in general the i-th layer n*p^(i-1) elements. For example, in a skip list with p = 0.5 and n = 64 elements we would expect the second layer to contain about 32 elements, the third about 16 and so on, and we would thus expect to have about log_(1/p)(n) = log_2(n) layers in total. To search an element in a skip list, we first linearly scan the topmost list (which contains only a few elements, maybe 2 or 3). This allows us to restrict our search to a smaller range in the list below. We then scan that range of the list below and repeat the process until we reach the bottommost list. With p = 0.5 you can almost think of it as a binary search. For example, with n = 64 elements we would expect to take about 2 steps of about 32 elements in the topmost list, restricting our search in the list below to a range of about 32 elements. We would then scan these 32 elements in the list below at steps of about 16 elements, and so on.