计算数字的标准化和工程科学记数法的最快算法

发布于 2025-01-01 05:14:37 字数 170 浏览 1 评论 0原文

测试用例:

35000

->该数字的标准化科学记数法为 3.5 * 10E4

->工程符号为 35 * 10E3

执行此操作的简单算法将不断将数字除以 10,直到我们获得所需的符号。然而,这意味着该算法将是 O(零的数量)。我们可以做得更好吗?

Test case :

35000

-> a normalized scientific notation of the number would be 3.5 * 10E4

-> the engineering notation would be 35 * 10E3

A simple algorithm that does this would keep dividing the number by 10 until we get the notations required. However this would mean the algorithm would be O(number of zeros). Can we do better?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伊面 2025-01-08 05:14:37

关于打印人类友好的浮点数表示的经典论文可以在此处阅读。它太复杂了,无法在此处的答案中作为代码进行讨论。

The classic paper on the subject of printing human-friendly representations of floating point numbers can be read here. It's much too complex to be discussed as code in an answer here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文