How can I merge 2 given Skip lists (each with n keys) into a one single Skip List in O(n) time complexity (worst case)?
Just looking for the algorithm - no particular implementation/language.
|
How can I merge 2 given Just looking for the algorithm - no particular implementation/language.
| ||||
|
feedback
|
it is indeed O(n) because store and merge are O(n), and in the loop, you need to iterate over:
| ||||
feedback
|