Status: Tags: #archivedCards/cmpt125/algorithms - Space Efficiency Links: Measuring performance time of algorithms
Big O Notation
Principles
Helps measure ?
-
Time
-
operations, loop iterations
-
-
space
- additional memory needed
-
sequence 1 = s1, sequence 2 = s2
-
sequential operations O(s1 + s2)
-
Repeated k times? O(ks1)
-
For loops? (O(s1 x s2))
-
Average case is anything else other than best and worst
Examples
Geometric summation for 2N;; N+(N/2+N/4+N/8+N/16) <= 2N, total running time, big o
Arithmetic
Summation would be 2-3N
- Straight forward, based on length of n
Multiplication would be $n^2$
- Multiply each digit by each digit
- based on length of n
Finding factor of 2 primes
- Runtime would be $10^{n}$ where n=actual digit
Practice
Exercises SO practice problems Runtime flashcards
- Proving big o notation
- Comparing big o runtimes
Backlinks
|
|
References:
Created:: 2021-10-06 14:32