复杂度为 O(n^5) 的算法的示例是什么?

发布于 2024-10-19 18:38:29 字数 37 浏览 3 评论 0原文

谁能提供一个最小运行时间复杂度为 O(n^5) 的算法示例?

can anyone provide an example of an algorithm with minimal running time complexity of O(n^5)?

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

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

发布评论

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

评论(6

三寸金莲 2024-10-26 18:38:29

O n5 复杂物体体积算法。

http://matmod.elte.hu/~lovasz/vol5.pdf

O n5 volume algorithm for complex bodies.

http://matmod.elte.hu/~lovasz/vol5.pdf

泅人 2024-10-26 18:38:29
for 1 to n
 for 1 to n
  for 1 to n
   for 1 to n
    for 1 to n
     Do Something
for 1 to n
 for 1 to n
  for 1 to n
   for 1 to n
    for 1 to n
     Do Something
小伙你站住 2024-10-26 18:38:29
void N5(int n)
{
    for( int n1 = 0; n1 < n; n1++ )
    {
        for( int n2 = 0; n2 < n; n2++ )
        {
            for( int n3 = 0; n3 < n; n3++ )
            {
                for( int n4 = 0; n4 < n; n4++ )
                {
                    for( int n5 = 0; n5 < n; n5++ )
                    {
                        DoSomething();
                    }
                }
            }
        }
    }
}
void N5(int n)
{
    for( int n1 = 0; n1 < n; n1++ )
    {
        for( int n2 = 0; n2 < n; n2++ )
        {
            for( int n3 = 0; n3 < n; n3++ )
            {
                for( int n4 = 0; n4 < n; n4++ )
                {
                    for( int n5 = 0; n5 < n; n5++ )
                    {
                        DoSomething();
                    }
                }
            }
        }
    }
}
筱果果 2024-10-26 18:38:29

Finden 和 Gordon 的获取常见修剪树的算法运行时间为 O(n^5)

Finden and Gordon's algorithm on Obtaining common pruned trees runs in O(n^5)

邮友 2024-10-26 18:38:29

10 维的凸包已被证明需要 O(n^5)(证明是针对一般 d,表明在最坏情况下,包可以是 O(n^floor(d/2)),IIRC)

Convex hull in 10 dimensions has been proven to require O(n^5) (the proof was for general d, showing that the hull can be O(n^floor(d/2)) in the worst case, IIRC)

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