We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e15ac commit 627582dCopy full SHA for 627582d
linked-list/readme.md
@@ -392,8 +392,8 @@ console.log(d.listSize()); // 4
392
Complexity of the process are below
393
* **insertNodeAtFirst** - O(1).
394
* **insertNodeAtLast** - O(1) since we have two way pointer connections.
395
-* **deleteNode** - O(n) - ```n``` is the length of iteration till value match found.
396
-* **searchNode** - O(n) - ```n``` is the length of iteration till value match found.
+* **deleteNode** - O(n) - ```n``` is the length of iteration till match value is found.
+* **searchNode** - O(n) - ```n``` is the length of iteration till match value is found
397
* **print** - O(n) - ```n``` is the size of the list .
398
399
## When to use linked list ##
0 commit comments