Skip to content

jandresboyaca/DataStructuresAndAlgorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 

Repository files navigation

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

About

Deep dive using java

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages