CMSC-5343 Algorithm Analysis Homework 1
CMSC-5343 Algorithm Analysis Homework 1
Homework 1 - 200 pt
Below, you will find the problems assigned for this assignment. Please elec-
tronically submit your assignment to blackboard.
5. Find big- bounds for the following recurrences (assume that adequate base
cases exist for each):
a) T (n) = T (n 1) + n
b) T (n) = T (n/2) + 1
c) T (n) = 4T (n/2) + n2
d) T (n) = T (n 1) + T (n 2)