码迷,mamicode.com
首页 > 编程语言 > 详细

C++中的大数乘的实现

时间:2019-09-16 00:37:35      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:ref   ring   ++   c++   ==   code   clu   string   html   

代码

来源:面试常考 大数加减乘除

#include <iostream>
#include <vector>
#include <string>

using namespace std;

vector<int> mult(string s1, string s2)
{
    int l1 = s1.size();
    int l2 = s2.size();
    vector<int> res(l1 + l2, 0);
    for (int i = 0; i < l1; i++)
    {
        for (int j = 0; j < l2; j++)
        {
            res[i + j + 1] += ((s1[i] - '0')*(s2[j] - '0'));
        }
    }
    int x = l1 + l2 - 1;
    for (int i = x; i > 0; i--)
    {
        res[i - 1] += res[i] / 10;
        res[i] %= 10;
    }
    return res;
}

int main()
{
    string a = "99999";
    string b = "99999";
    vector<int> ans = mult(a, b);
    int i = 0;
    //去除前面的0
    while (i < ans.size() && ans[i] == 0)
    {
        i++;
    }
    for (; i < ans.size(); i++)
    {
        cout << ans[i];
    }
    cout << endl;
    system("pause");
    return 0;
}

C++中的大数乘的实现

标签:ref   ring   ++   c++   ==   code   clu   string   html   

原文地址:https://www.cnblogs.com/clwsec/p/11525073.html

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