We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ad9f6 commit 598eb54Copy full SHA for 598eb54
README.md
@@ -53,7 +53,7 @@ SkipList还有一个优势就是实现简单,SkipList的实现只花了2个小
53
54
如下是插入结点示意图:
55
56
-<img src="res/skiplist_insert.png" width="1000" height="170"/>
+<img src="res/skiplist_insert.png" width="1000" height="280"/>
57
58
其实插入节点的关键就是找到合适的插入位置,即从所有小于待插入节点key值的节点中,找出最大的那个,所以插入节点的过程如下:
59
@@ -115,7 +115,7 @@ SkipList还有一个优势就是实现简单,SkipList的实现只花了2个小
115
116
移除结点的示意图如下:
117
118
-<img src="res/skiplist_remove.png" width="1000" height="170"/>
+<img src="res/skiplist_remove.png" width="1000" height="280"/>
119
120
移除结点其实很简单,就分以下3步:
121
0 commit comments