From e7bc36cf645d11539cac9e2c9ffe098457488ad6 Mon Sep 17 00:00:00 2001 From: Anton Date: Sat, 17 Dec 2016 19:41:31 +0100 Subject: [PATCH] Fix Skip-List link in readme --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 4c812b0f3..7ac170a65 100644 --- a/README.markdown +++ b/README.markdown @@ -142,7 +142,7 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types ### Lists - [Linked List](Linked List/). A sequence of data items connected through links. Covers both singly and doubly linked lists. -- Skip List +- [Skip-List](Skip-List/). Skip List is a probablistic data-structure with same logarithmic time bound and efficiency as AVL/ or Red-Black tree and provides a clever compromise to efficiently support search and update operations. ### Trees