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 a1d218d commit 2371dd2Copy full SHA for 2371dd2
README.md
@@ -279,7 +279,7 @@ Below is the list of some of the most used Big O notations and their performance
279
|**Array**| 1 | n | n | n ||
280
|**Stack**| n | n | 1 | 1 ||
281
|**Queue**| n | n | 1 | 1 ||
282
-|**Linked List**| n | n | 1 |1||
+|**Linked List**| n | n | 1 |n||
283
|**Hash Table**| - | n | n | n | In case of perfect hash function costs would be O(1) |
284
|**Binary Search Tree**| n | n | n | n | In case of balanced tree costs would be O(log(n)) |
285
|**B-Tree**| log(n) | log(n) | log(n) | log(n) ||
0 commit comments