From 8ab965b483bccd6dd7304732ffeda198b88c8d92 Mon Sep 17 00:00:00 2001 From: Cloudyan Date: Fri, 8 Mar 2019 19:05:50 +0800 Subject: [PATCH] Update README.md (#316) --- src/data-structures/linked-list/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data-structures/linked-list/README.md b/src/data-structures/linked-list/README.md index 47ec7ff1..800d65d0 100644 --- a/src/data-structures/linked-list/README.md +++ b/src/data-structures/linked-list/README.md @@ -148,7 +148,7 @@ end ReverseTraversal | Access | Search | Insertion | Deletion | | :-------: | :-------: | :-------: | :-------: | -| O(n) | O(n) | O(1) | O(1) | +| O(n) | O(n) | O(1) | O(n) | ### Space Complexity