博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
大omega记号_什么是大欧米茄符号?
阅读量:2522 次
发布时间:2019-05-11

本文共 1085 字,大约阅读时间需要 3 分钟。

大omega记号

Similar to notation, big Omega(Ω) function is used in computer science to describe the performance or complexity of an algorithm.

与表示法相似,大Omega(Ω)函数在计算机科学中用于描述算法的性能或复杂性。

If a running time is Ω(f(n)), then for large enough n, the running time is at least k⋅f(n) for some constant k. Here’s how to think of a running time that is Ω(f(n)):

如果运行时间为Ω(f(n)),则对于足够大的n,对于某个常数k,运行时间至少为k⋅f(n)。 这是运行时间为Ω(f(n))的思考方式:

We say that the running time is “big-Ω of f(n).” We use big-Ω notation for asymptotic lower bounds, since it bounds the growth of the running time from below for large enough input sizes.

我们说运行时间是“ f(n)的大Ω”。 我们将big-Ω表示法用于渐近下界 ,因为对于足够大的输入大小,它从下面限制了运行时间的增长。

大O和大Ω之间的差异 (Difference between Big O and Big Ω)

The difference between Big O notation and Big Ω notation is that Big O is used to describe the worst case running time for an algorithm. But, Big Ω notation, on the other hand, is used to describe the best case running time for a given algorithm.

Big O表示法和BigΩ表示法之间的区别在于,Big O用于描述算法的最坏情况运行时间。 但是,另一方面,BigΩ表示法用于描述给定算法的最佳情况下运行时间。

更多信息: (More Information:)

翻译自:

大omega记号

转载地址:http://omrwd.baihongyu.com/

你可能感兴趣的文章
LPCTSTR,LPWSTR, PTSTR, LPTSTR含义
查看>>
lstrlen、strlen和wcslen 区别
查看>>
CreatePolyPolygonRgn
查看>>
op设计分析
查看>>
Bugzilla3.0.8在Fedora10下基本安装
查看>>
SVN在Windows下安装
查看>>
svn基本操作(1)
查看>>
利用Perl发送邮件例子
查看>>
mysqldump使用用例
查看>>
linux下显示硬盘、CPU、内存等信息
查看>>
通过HTTP抓取QQ好友过程
查看>>
从源代码安装mysql
查看>>
CVS常用命令(1) -- 基本
查看>>
CVS常用命令(2) -- 标记和分支
查看>>
CVS常用命令(3) -- 非排它性编辑
查看>>
利用HTTP登录QQ群流程
查看>>
Tomcat6配置使用SSL双向认证(使用openssl生成证书)
查看>>
让windows cmd支持中文输入
查看>>
Fedora默认是不让root登录图形界面的
查看>>
Java设计模式(14)--代理
查看>>