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 149444b commit 0a0c6bbCopy full SHA for 0a0c6bb
README.md
@@ -248,7 +248,8 @@ Below is the list of some of the most used Big O notations and their performance
248
249
| Data Structure | Access | Search | Insertion | Deletion | Comments |
250
| ----------------------- | :-------: | :-------: | :-------: | :-------: | :-------- |
251
-| **Array** | 1 | n | n | n | |
+| **Sorted Array** | 1 | logn | n | n | |
252
+| **Unsorted Array** | 1 | n | 1 | 1 | For deletion, move the last element to the space that was just deleted |
253
| **Stack** | n | n | 1 | 1 | |
254
| **Queue** | n | n | 1 | 1 | |
255
| **Linked List** | n | n | 1 | 1 | |
0 commit comments