What is the difference between number of comparisons and the growth of the number of the comparisons of an algorithm ? For example for a binary search and a ternary search.
I understand that the number of comparisons is a fixed number for a specific case, but the growth takes into consideration the worst case scenario (when the element is in the 2/3 of the list in the ternary search). But I don't know if I'm right or not or if I missed something important