Please help me with the O- notation. As far as I understand:
- O (h (n)) means that the algorithm behaves in the worst case as c * h (n) , starting with some value n 0 , where c is a constant.
- Ω (h (n)) means that the algorithm behaves in the best case as c * h (n) , starting with some value n 0 , where c is a constant.
- ο (h (n)) means that the algorithm behaves in the worst case “asymptotically better” than c * h (n) , starting with some value n 0 , where c is a constant.
- ω (h (n)) means that the algorithm behaves in the best case “asymptotically worse” than c * h (n) , starting with some value n 0 , where c is a constant.
I can not understand what means Θ (h (n)) , please explain. And if I made a mistake in the previous definitions, please correct.