C++實現(xiàn)大數(shù)乘法算法代碼
更新時間:2015年03月11日 11:54:23 投稿:hebedich
這篇文章主要介紹了C++實現(xiàn)大數(shù)乘法算法代碼的相關資料,需要的朋友可以參考下
C++實現(xiàn)大數(shù)乘法算法代碼
復制代碼 代碼如下:
//大數(shù)乘法算法
#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int main()
{
string num1,num2;
cin >> num1 >> num2;
//cout << num1.size() << " " << num2.size() << endl;
const char* n1;
const char* n2;
if (num1.size() < num2.size())
{
n1 = num2.c_str();
n2 = num1.c_str();
}
else
{
n1 = num1.c_str();
n2 = num2.c_str();
}
char* n = new char[strlen(n1)+strlen(n2)+1];
for (unsigned int i = 0; i < strlen(n1)+strlen(n2); i++)
n[i] = '0';
n[strlen(n1)+strlen(n2)]='\0';
//cout << strlen(n) << endl;
int count = 0,flag = 0;
for (int i = strlen(n1)-1; i >= 0; i--)
{
flag++;
int x1 = n1[i]-'0';
//cout << "n1["<< i << "]為:" << x1 << endl;
char carry = '0';
for (int j = strlen(n2)-1; j >= 0; j--)
{
int x2 = n2[j]-'0';
//cout << "n2["<< j << "]為:" << x2 << endl;
//cout << "當前位未改變前值為: " << n[count] << endl;
int sum = x1*x2 + (carry-'0') + n[count]-'0';
//cout << "sum is " << sum << endl;
n[count++] = (sum % 10)+'0';
carry = (sum / 10)+'0';
//cout << "當前位的值為: " << n[count-1] << endl;
//cout << "carry的值為:" << carry << endl;
}
if (carry != '0')
{
n[count] = carry;
count = flag;
//cout << "當前位的值為: " << n[count] << endl;
}
else
count = flag;
}
for (int i = strlen(n)-1; i >= 0; i--)
{
if ((i == strlen(n)-1)&&(n[i] == '0'))
continue;
cout << n[i];
}
cout << endl;
delete[]n;
system("pause");
return 0;
}
以上就是本文所述的全部內容了,希望大家能夠喜歡。
相關文章
Visual Studio Code 配置C、C++環(huán)境/編譯并運行的流程分析
這篇文章主要介紹了Visual Studio Code 配置C、C++環(huán)境/編譯并運行的流程分析,本文通過圖文并茂的形式給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-05-05