n log n 是 O(n)?

发布于 2024-12-11 05:06:01 字数 343 浏览 4 评论 0原文

我正在尝试解决这个递归问题

T(n) = 3 T(n/2) + n lg n ..

我得出了它属于大师定理案例 2 的解决方案,因为 n lg n 是 O(n^2)

但在参考解决方案手册后,我注意到这个解决方案,他们有

在此处输入图像描述

该解决方案表示 n lg n =在^(lg 3 - e)) 对于 e 在 0 到 0.58 之间,

所以这意味着 n lg n 是 O(n) .. 这是对的吗?我在这里错过了什么吗?

nlgn 不是 O(n^2) 吗?

I am trying to solve this recurrence

T(n) = 3 T(n/2) + n lg n ..

I have come to the solution that it belongs to masters theorem case 2 since n lg n is O(n^2)

but after referring to the solution manual i noticed this solution that they have

enter image description here

The soluttion says that n lg n = O ( n ^(lg 3 - e)) for e between 0 and 0.58

so this means n lg n is O(n) .. is this right? Am i missing something here?

Isn't nlgn O(n^2) ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

输什么也不输骨气 2024-12-18 05:06:01

这会更好地解释事情
在此处输入图像描述

This will explain things better
enter image description here

死开点丶别碍眼 2024-12-18 05:06:01

n*log(n) 不是 O(n^2)。它被称为拟线性,并且增长速度比 O(n^2) 慢得多。事实上,n*log(n) 小于多项式。

换句话说:

O(n*log(n)) < O(n^k)

其中k > 1

在您的示例中:

3*T(2n) -> O(n^1.585)

由于 O(n^1.585) 是多项式并且主导 O(n*log(n)),因此后一项会下降最终的复杂度仅为O(n^1.585)

n*log(n) is not O(n^2). It's known as quasi-linear and it grows much slower than O(n^2). In fact n*log(n) is less than polynomial.

In other words:

O(n*log(n)) < O(n^k)

where k > 1

In your example:

3*T(2n) -> O(n^1.585)

Since O(n^1.585) is polynomial and dominates O(n*log(n)), the latter term drops off so the final complexity is just O(n^1.585).

遮云壑 2024-12-18 05:06:01

nlg3 不是 O(n)。它超出了 O(n)...事实上,任何大于 1 的 n 指数都会导致比 O(n) 渐近更长的时间。由于 lg(3) 约为 1.58,因此只要从指数中减去小于 0.58,它就会渐近大于 O(n)。

nlg3 is not O(n). It outgrows O(n)... In fact, any exponent on n that is larger than 1 results in an asymptotically longer time than O(n). Since lg(3) is about 1.58, as long as you subtract less than .58 from the exponent it is asymptotically greater than O(n).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文