超长数运算
Posted taoxiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了超长数运算相关的知识,希望对你有一定的参考价值。
1. 两超长整数相加
两个数先用字符串存储(C++可用string,然后用cin输入),从后往前,每次各取一个做加法,记下和(用栈)和进位值;下一次再取做加法时要加上进位......。一个字符串取完了,另一个没取完,则没取完的字符串继续加进位。
string x,y; cin>>x>>y; stack<int> tmp; int i = x.size()-1; int j = y.size()-1; int p = 0; //进位 while(i>=0 && j>=0) { int t = x[i]-‘0‘+y[j]-‘0‘+p; tmp.push(t%10); p = t/10; i--; j--; } while(i>=0) { //i和j肯定最多只有一个没用完 int t = x[i]-‘0‘+p; tmp.push(t%10); p = t/10; i--; } while(j>=0) { int t = y[j]-‘0‘+p; tmp.push(t%10); p = t/10; j--; } if(p>0) { //最后的进位不能忘记 tmp.push(p); } while(!tmp.empty()) { cout<<tmp.top(); tmp.pop(); } cout<<endl;
以上是关于超长数运算的主要内容,如果未能解决你的问题,请参考以下文章