Data Structures and Algorithms > Sorting > Flashcards
Master theorum for T(n) = aT(n/b) + f(n)
if f(n) = theta(n^d), where d >= 0,T(n) = theta(n^d) if a < b^dT(n) = theta(n^d logn) if a = b^dT(n) = theta(n^log b a) if a > b^d