递归关系:寻找大O

发布于 2024-09-09 08:16:19 字数 379 浏览 2 评论 0原文

我试图找到这个递归关系的大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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文