Skip to content

Commit 6a0035d

Browse files
authored
Add description for SkipList.java (#3503)
1 parent c6694fc commit 6a0035d

File tree

1 file changed

+1
-0
lines changed
  • src/main/java/com/thealgorithms/datastructures/lists

1 file changed

+1
-0
lines changed

src/main/java/com/thealgorithms/datastructures/lists/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ The `next` variable points to the next node in the data structure and value stor
2929
5. `DoublyLinkedList.java` : A modification of singly linked list which has a `prev` pointer to point to the previous node.
3030
6. `Merge_K_SortedLinkedlist.java` : Merges K sorted linked list with mergesort (mergesort is also the most efficient sorting algorithm for linked list).
3131
7. `RandomNode.java` : Selects a random node from given linked list and diplays it.
32+
8. `SkipList.java` : Data Structure used for storing a sorted list of elements with help of a Linked list hierarchy that connects to subsequences of elements.

0 commit comments

Comments
 (0)