Give asymptotic upper and lower bounds for T(n) in each of the following recurrences. Assume that T(n) is constant for s
Posted: Tue May 24, 2022 7:47 am
Give asymptotic upper and lower bounds for T(n) in each of the following recurrences. Assume that T(n) is constant for sufficiently small n. Make your bounds as tight as possible, and justify your answers. (a) T(n) = 4T(n/3) + nlgn (b) T(n) = 3T(n/3) + n/lgn (c) T(n) = 4T(n/2) + n² √n (d) T(n) = 3T(n/3 − 2) + n/2 (e) T(n) = 2T (n/2) + n/lgn (f) T(n) = T(n/2) + T(n/4) + T(n/8) + n LO 5