Skip to content

Latest commit

 

History

History
66 lines (59 loc) · 2.16 KB

README.md

File metadata and controls

66 lines (59 loc) · 2.16 KB

DataStructures and Algorithms with Java

Topics

Big-O Notation

+---------+
| Big-O   |
+-------------------------+
| O(1)    | Constant      |
+-------------------------+
| O(logn) | Logarithmic   |
+-------------------------+
| O(n)    | Linear        |
+-------------------------+
| O(nlogn)| n log-start n |
+-------------------------+
| O(n²)   | Quadratic     |
+---------+---------------+

Complexity is measure in time of execution and memory of execution

Graphic Representation

Notation

Convention

X Y
Elements Operations

References