I am taking a data structures and algorithms course (which has been tough). We learned about the master method to solve basic recurrence relations when they are in the form aT(n/b)+f(n). Now we have learned about the linear time selection algorithm which has a relation that is not in this form and I am being asked to find its worse case running time is asymptotic notation.
I have found the the recurrence relation as:
It seems to me that the Master Method does not account for this - I may very well be wrong. If it doesn't, then how do you find the worse case running time?
T(n)<T(0.01*n)+T(0.75*n+100)+O(n)? - Lutz Lehmann