What does Õ (omicron tilde) mean in complexity Õ(n) vs O(n) [closed]

偶尔善良 提交于 2019-12-18 14:25:09

问题


I've never seen this notation for complexity: Õ(n).

It comes up in the context of learning in stochastic algorithms.

Anyone know this notation? You can't exactly google this...

EDIT: SOLVED

I think people have pointed out the right answer below. In my case Õ() is used to hide an exponential growth of a tree.


回答1:


It is shorthand for O(g(n) log^k g(n))




回答2:


Actually, you can google this!

It is a variant of big-O that ignores logarithmic factors. See this wikipedia entry, which I found simply by googling that character and looking at the top entry.



来源:https://stackoverflow.com/questions/12744718/what-does-%c3%95-omicron-tilde-mean-in-complexity-%c3%95n-vs-on

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!