high-precision-algorithm
high-precision-algorithm
高精度
在一般的科学计算中,会经常算到小数点后几百位或者更多,当然也可能是几千亿几百亿的大数字。一般这类数字我们统称为高精度数,高精度算法是用计算机对于超大数据的一种模拟加、减、乘、除、乘方、阶乘、开方等运算。 对于一个很大的数字N >= 10^ 100,很显然这样的数字无法在计算机中正常存储。于是, 我们想到了办法,将这个数字拆开,拆成一位一位的或者是四位四位的存储到一个数组中,用一个数组去表示一个数字。这样这个数字就被称谓是高精度数。 对于高精度数,也要像平常数一样做加减乘除以及乘方的运算,于是就有了高精度算法。
1.高精度加法
1 | void high_precision_add(string num1, string num2, string& res) { |
2.高精度乘法
1 | void high_precision_multiply(string num1, string num2, string& res) { |
3.高精度减法
1 | void high_precision_sub(string num1, string num2, string& res) { |
4.高精度除法
1 | void sub(string& num1, string& num2) { |
模板题
阶乘之和
用高精度计算出 $S = 1! + 2! + 3! + \cdots + n!$($n \le 50$)。
其中 !
表示阶乘,定义为 $n!=n\times (n-1)\times (n-2)\times \cdots \times 1$。例如,$5! = 5 \times 4 \times 3 \times 2 \times 1=120$。
输入格式
一个正整数 $n$。
输出格式
一个正整数 $S$,表示计算结果。
样例 #1
1 | 3 |
样例输出 #1
1 | 9 |
提示
【数据范围】
对于 $100 %$ 的数据,$1 \le n \le 50$。
【其他说明】
注,《深入浅出基础篇》中使用本题作为例题,但是其数据范围只有 $n \le 20$,使用书中的代码无法通过本题。
如果希望通过本题,请继续学习第八章高精度的知识。
AC代码
1 |
|
- Title: high-precision-algorithm
- Author: Charles
- Created at : 2023-01-10 14:56:41
- Updated at : 2023-07-30 10:52:49
- Link: https://charles2530.github.io/2023/01/10/high-precision-algorithm/
- License: This work is licensed under CC BY-NC-SA 4.0.
recommend_articles
Comments