X^n 比 X^(1/n) 更有效吗? (n为整数)
我猜 X^n 更有效。谁能解释一下吗?
谢谢。
I'm guessing X^n is more efficient. Can anyone explain?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我猜 X^n 更有效。谁能解释一下吗?
谢谢。
I'm guessing X^n is more efficient. Can anyone explain?
Thanks.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
是否 这回答了您的问题吗?
Does this answer your question?
我认为“X”是常数吗?随着 n 的增长,2^n 会很快变大。但当 n 增长到 2^(1/n) 时,它就会变小。然而,我不太确定什么算法给你 2^(1/n)... 2^(1/n) 的唯一问题是它开始时非常大(实际上是无穷大)并随着时间的推移而缩小。再次,我很好奇什么算法可以给你 2^(1/n) 或者它是否存在......
I take it that 'X' is constant? As n grows, 2^n gets bigger rather quickly. But as n grows for 2^(1/n), it gets smaller. However, I am not too sure what algorithm gives you 2^(1/n)... The only problem with 2^(1/n) is that it starts off being very huge (infinity, actually) and shrinks over time. Again, I am curious as to what algorithm gives you 2^(1/n) or if it even exists...