Please enable JavaScript.
Coggle requires JavaScript to display documents.
Algorithms (Comparison of complexity of algorithms (Prior knowledge…
Algorithms
-
Big O notation
0(1) Constant complexity
An algorithm that always executes in the same time regardless of the size of the data set. Best algorithms.
-
0(n) Linear complexity
An algorithm whose performance is proportional to the size of the data set and declines as the data set grows. Fair algorithms.
-
-
-