函数是 Big O(1) 但不是 Ω(1)
有人可以帮我设计一个大 O(1) 但不是 Ω(1) 的函数吗?反之亦然?一些解释会有很大帮助。
Can some help me with a function which is Big O(1) but not Ω(1) and the other way around? Some explanation would greatly help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Big-O 表示 <=,big Omega 表示 >=,因此 O(1) 但不是 Omega(1) 的函数是 f(n) = 1/n。反之,f(n) = n 有效。
Big-O means <= and big Omega means >=, so a function that is O(1) but not Omega(1) is f(n) = 1/n. For the other way around, f(n) = n works.