递归关系:寻找大O
我试图找到这个递归关系的大O:
T(n) = T(n-1) + n^c // where c is >=1
所以我决定使用递归树来解决这个问题,我将其分解如下:
n^c -> (n-1)^c -> (n-2)^c -> ... -> (n-i)^c
然后我形成了以下总和:
from 0 to n-1:
(n-i)^c
减少这个总和给出: (n-(n-1))^c = (1)^c
那么正确的大 O 表示法是 O(n) 吗?谢谢。
I'm trying to find Big O of this recurrence relation:
T(n) = T(n-1) + n^c // where c is >=1
So I decided to solve this by using a recursion tree, which I have broken down as follows:
n^c -> (n-1)^c -> (n-2)^c -> ... -> (n-i)^c
I then formed the following sum:
from 0 to n-1:
(n-i)^c
Reducing this sum gives:(n-(n-1))^c = (1)^c
So then would the correct Big O notation be O(n)? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论