From 5080b280bab2347693f98abdd0db5e7c4a087546 Mon Sep 17 00:00:00 2001 From: Jitendra Singh Date: Mon, 13 Mar 2017 00:44:57 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7caa6d7c..01cf5823 100644 --- a/README.md +++ b/README.md @@ -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)`