如何获得一种算法来对浮点指数进行求幂?
我正在 Deluge (zoho.com) 中开发一个小型应用程序。没有“^”运算符或“pow”函数来进行求幂。最糟糕的是,我应该也用浮点指数进行求幂,而不仅仅是整数指数。我发现很多算法都可以进行整数求幂,但没有一个算法可以对浮点求幂。谢谢你的帮助。
I'm developing a small application in Deluge (zoho.com). There isn't a "^" operator or a "pow" function to do exponentiation. Getting worst, I'm supposed to do exponentiations also with float exponents, instead just integer exponents. I've found a lot of algorithms doing integer exponentiations, but none that do it for float ones. Thank you for helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们基本相同。如果你想要简单的东西,那么重复乘法就可以了。
如果你想让乘法过程高效,你可以使用分而治之算法,
They are basically same. If you want something simple, then repeatedly multiplying would do.
If you want to make the multiplication process efficient, you can go for Divide and conquer algorithm,