Please enable JavaScript.
Coggle requires JavaScript to display documents.
Things to Learn - Coggle Diagram
Things to Learn
-
🎁Arrays
Dynamic
** can be O(n) on expanding memory
-
Searching. Is it sorted?
-
No. Will sorting make it faster? If still no, Linear Search🚀
-
-
-
🎁Hash Tables
-
Improve Time Complexity?
Fast Access O(1), tradeoff: more memory O(n)
**could be O(n) with hash collisions and dynamic array resizing but unlikely
-
-
-