Lets Take Binary search for instance, The best case running time would be obtained in First comparison when
key_to_find == (imin + imax) / 2;
And the best case running time would be represented by O(1). I Completely understand that but what confuses me is why O(1) is used and why I can't use Θ(1) or any other notation for same.
i.e . How to identify which notation should I use to represent the Running time(Best, Average or Worst case).
