1/15
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Each operation executes only a few times
Constant
When a problem is solved by transforming it into subproblems that eliminate some of the input
Logarithmic
When a small amount of processing is required per input
Linear
When a problem is broken to subproblems, and solutions are combined
Quasilinear
When all pairs of data are processed
Quadratic
When triples of data are processed
Cubic
A fraction of all subsets of data is processed
Exponential
A fraction of all arrangement of data is processed
Factorial
Constant
O(1)
Logarithmic
O(log n)
Linear
O(n)
Quasilinear
O(n log n)
Quadratic
O(n2)
Cubic
O(n3)
Exponential
O(2n)
Factorial
O(n!)