简体   繁体   中英

Time Complexity for the recurrence relation T(n) = T(n-1)*n

I need help with the following recurrence relation.

T(1) = 1

T(n) = T(n-1)*n

This is what I've tried. I think I might have messed up the substitution part but again please take a look at let me know if the time complexity I've got is correct.

T(n) = T(n-1)*n               T(n-1) = T(n-2)*n-1
T(n) = [T(n-2)*(n-1)]*n
T(n) = T(n-2)*(n-1)*n
T(n) = [T(n-3)*n-2]*(n-1)*n
T(n) = T(n-3)*(n-2)*(n-1)*n
...
...
...
T(n) = T(n-k)*(n-(k-1))*(n-(k-2))...*(n-1)*(n)

Assuming n-k=0, n=k

T(n) = T(n-n)*(n-n+1)*(n-n+2)...*(n-1)*(n)
T(n) = T(0)*(1)*(2)...*(n-1)*n

O(n^2)

Now I am not sure if what I did was exactly correct or not but any help would be appreciated.

Only the final complexity is wrong, you end up with O(n.).

The recursive relation must be T(n) = T(n-1)+n for getting O(n^2) as the complexity.

Very close! You've correctly identified that the complexity is

n * (n - 1) * (n - 2) *... * 3 * 2 * 1.

However, that's not O(n 2 ). It would be O(n 2 ) if you added the terms rather than multiplying them.

What do you call the product of all the natural numbers from 1 to n, inclusive?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM