From acbadbcbafe251bebc3511a013ad1c783db0290d Mon Sep 17 00:00:00 2001 From: Jay-prakashpandey <81908427+Jay-prakashpandey@users.noreply.github.com> Date: Mon, 4 Oct 2021 12:38:30 +0530 Subject: [PATCH] Update linked-list.md --- contents/algorithms/linked-list.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contents/algorithms/linked-list.md b/contents/algorithms/linked-list.md index 1fc9c203..cdd69697 100644 --- a/contents/algorithms/linked-list.md +++ b/contents/algorithms/linked-list.md @@ -46,3 +46,8 @@ Be familiar with the following routines because many linked list questions make - [Merge K Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists/) - [Remove Nth Node From End Of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) - [Reorder List](https://leetcode.com/problems/reorder-list/) + +## Complexity + +- Access , Search O(N) +- Insertion , Deletion O(1)