码迷,mamicode.com
首页 > 其他好文 > 详细

elegant 的长整数加法 string 实现

时间:2015-12-09 16:46:30      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

string strAdd(string &v1, string &v2){
    string res = "";
    int carry = 0;
    int len1 = v1.size(), len2 = v2.size();

    for(int i = len1-1, j = len2-1; i >= 0 || j >= 0; i--, j--){
        int n1 = (i >= 0) ? v1[i]-0 : 0;
        int n2 = (j >= 0) ? v2[j]-0 : 0;
        res = to_string((n1 + n2 + carry) % 10) + res;
        carry = (n1 + n2 + carry) > 9;
    }

    return (carry) ? "1" + res : res;
}

 

elegant 的长整数加法 string 实现

标签:

原文地址:http://www.cnblogs.com/sweetiemelody/p/5032962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!