Does generalized master method for solving recurrences work for: $T(n) = T(n - 1) + n$

32 Views Asked by At

I know that the generalized master method works for recurrences in the form: $T(n) = aT(\frac{n}{b}) + f(n)$, but does it work for:

$T(n) = T(n - 1) + n$,

where there is constant following n?