大数加法 (A + B Problem II)

Posted myxdashuaige

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大数加法 (A + B Problem II)相关的知识,希望对你有一定的参考价值。

现在的题目,感觉大数加法用的还是很少了,但还是在这里介绍一道最基础的题目。
题目:hdu 1002 (http://acm.hdu.edu.cn/showproblem.php?pid=1002)
解法:大数加法
注意:需要注意的是,应该与大数乘法连起来一起看,你会发现它们之间进位的关系,加法最多只会进位1,但是乘法就会进位大于1。这是它们之间的区别
代码:



 

 

 

 

 

 

 

 

 

 

纯净版的无添加原生代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    //freopen("in.txt","r",stdin);
    char s1[1000]; char s2[1000];
    int a[1000] = {0}; int b[1000] = {0}; int sum[1000] = {0};
    cin >> s1 >> s2;
    int lenA = strlen(s1) - 1;
    int lenB = strlen(s2) - 1;
    int k = 0;
    int maxx = max(lenA,lenB);

    for(int i=lenA;i>=0;i--)  //两个for循环,将数组的高低位置反
        a[k++] = s1[i] - 0;
    k = 0;
    for(int i=lenB;i>=0;i--)
        b[k++] = s2[i] - 0;

    int carry = 0;            //carry表示进位标识符
    for(int i=0;i<=maxx;i++)
    {
        int tmp1 = a[i] + b[i] +carry;
        sum[i] = tmp1%10;
        if(tmp1 >=10)        //如果相加大于10,表示有进位
            carry = 1;
        else
            carry = 0;
    }
    if(carry == 1) printf("1");    //如果最后,A,B的最高为相加有进位的话,那么可以单独输出
    for(int i=maxx;i>=0;i--)
        printf("%d",sum[i]);
    return 0;
}

 









以上是关于大数加法 (A + B Problem II)的主要内容,如果未能解决你的问题,请参考以下文章

题解报告:hdu 1002 A + B Problem II(大数加法)

HDU - 1002 A + B Problem II (大整数加法)

大数运算 A + B Problem II

HPU 1002 A + B Problem II大数

HDU 1002 A - A + B Problem II (大数问题)

HDU1002 A + B Problem II 大数问题