Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Jitendra Singh authored Mar 12, 2017
1 parent 18d28fe commit 5080b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Interviews
pointing to the next node by means of a pointer. It is a data structure
consisting of a group of nodes which together represent a sequence.
* **Singly-linked list**: linked list in which nodes have pointers to the next node and the last node points to null
* **Doubly-linked list**: linked list in which nodes have two pointers to points to *both* the previous node and the next node
* **Doubly-linked list**: linked list in which nodes have two pointers which points to *both* the previous node and the next node
* **Circular-linked list**: linked list in which nodes have pointers to the next node and the last node points again to the head
* Time Complexity:
* Access: `O(n)`
Expand Down

0 comments on commit 5080b28

Please sign in to comment.