码迷,mamicode.com
首页 > 其他好文 > 详细

[copypaste]各种表示法

时间:2016-12-26 00:20:17      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:tab   blank   order   表示   com   http   body   log   lan   

大O表示法:

f(x) = O(g(x)) 表示f(x)以g(x)为上界。上界并不是确接。例如n^2的上界可以是n^3。

实际上O(g(x))应该是一个函数的集合,所以应该写成f(x)∈O(g(x))。

 

小o表示法:

f(x) = o(g(x))表示f(x)趋近于g(x)。例如f(x)=x^2+1, g(x)=x^2。

 

Ω表示法:

f(x) = Ω(g(x))表示f(x)以g(x)为下界。例如n(g(x))是n^2(f(x))的一个下界。

 

θ表示法:

f(x) = θ(g(x))说明g(x)是f(x)的确界。也就是同时满足f(x) = O(g(x))且f(x) = Ω(g(x))。

 

符号定义
技术分享 渐近上限
技术分享 asymptotically negligible(
技术分享
技术分享 渐近下限 (当且仅当
技术分享
技术分享 asymptotically dominant(当且仅当
技术分享
技术分享 asymptotically tight bound(当且仅当
技术分享

技术分享

 

//原文:http://www.cnblogs.com/lzsz1212/p/3955218.html

http://www.aichengxu.com/view/2422583

[copypaste]各种表示法

标签:tab   blank   order   表示   com   http   body   log   lan   

原文地址:http://www.cnblogs.com/chua/p/6220727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!