- Oh
- omaega
- theta
- big Oh
- small Oh
- big omaega
- small omaega
- Big Oh Notation:
-
Omaega Notation :
The notation Ω (n) is the formal way to express the lower bound of an algorithm's running time. It measures the best case complexity or the shortest amount of time an algorithm can possibly take to complete.
-
Theta Notation :
The notation θ(n) is the formal way to express both the lower and upper bound of an algorithm's running time. It measures the average complexity or the average amount of time an algorithm can possibly take to complete.
The notation O(n) is the formal way to express the upper bound of an algorithm's running time. It measures the worst case time complexity or the longest amount of time an algorithm can possibly take to complete.
Quote: