我正在尝试找到最好的算法
converting an "ordinary" linked list
into an `ideal skip list`
.
其中ideal skip list
的定义是,在第一级中,我们将拥有所有元素,在上面的水平 - 一半,之后的 - 四分之一......等等.
我正在考虑O(n)
运行时,其中涉及为每个节点投掷硬币原来的链表,不管是不是针对某个特定的节点,我该不该上去,为楼上的当前节点再创建一个重复的节点......最终这个算法会产生O(n),有没有更好的算法?
问候
我假设链表已排序 - 否则无法在基于比较的算法中完成,因为您需要对其进行排序Omega(nlogn)
- 迭代列表的"最高级别",并每隔一个节点添加一个"链接节点"。
- 重复此操作,直到最高级别只有一个节点。
这个想法是生成一个新列表,大小是原始列表的一半,在每个第二个链接中链接到原始列表,然后在较小的列表上递归调用,直到达到大小为 1 的列表。
您最终将得到大小为 1,2,4,...,n/2 的列表相互链接。
伪代码:
makeSkipList(list):
if (list == null || list.next == null): //stop clause - a list of size 1
return
//root is the next level list, which will have n/2 elements.
root <- new link node
root.linkedNode <- list //linked node is linking "down" in the skip list.
root.next <- null //next is linking "right" in the skip list.
lastLinkNode <- root
i <- 1
//we create a link every second element
for each node in list, exlude the first element:
if (i++ %2 == 0): //for every 2nd element, create a link node.
lastLinkNode.next <- new link node
lastLinkNode <- lastLinkNode.next //setting the "down" field to the element in the list
lastLinkNode.linkedNode <- node
lastLinkNode.next <- null
makeSkipList(root) //recursively invoke on the new list, which is of size n/2.
复杂度是O(n),因为算法复杂度可以描述为T(n) = n + T(n/2)
,因此你得到T(n) = n + n/2 + n/4 + ... -> 2n
很容易看出它不能做得比O(n)
更好,因为至少您必须在原始列表的后半部分添加至少一个节点,而到达那里本身就是O(n)