Skip to content
Snippets Groups Projects
Commit 6c1729a4 authored by Dominik Zobel's avatar Dominik Zobel Committed by Tobias Koelling
Browse files

Adjust Big-O Notation slide

parent 10e4a29b
No related branches found
No related tags found
1 merge request!24complexity lecture
......@@ -20,7 +20,18 @@ Investigation of resources needed for algorithms working on data structures
- Memory required to run an algorithm
## big-$\mathcal{O}$ notation
## Big-$\mathcal{O}$ Notation
- With enough data, usually only the order in relation to input data $n$ is important
- Therefore the big-$\mathcal{O}$ notation describes the asymptotic behaviour of running an algorithm
| Order | Notation |
| ------------ | ---------------------- |
| constant | $\mathcal{O}(1)$ |
| logarithmic | $\mathcal{O}(\log{n})$ |
| linear | $\mathcal{O}(n)$ |
| quadratic | $\mathcal{O}(n^2)$ |
# specific algorithms
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment