您好,登錄后才能下訂單哦!
這篇文章給大家介紹C++中怎么實現一個大整數乘法,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
算法競賽入門經典 這本書并沒有對大數乘法實現,所以自己補充了一下,乘法的實現很簡單,就是再其數據結構基礎上把每寬為8位的十進制數看成多項式的系數,vector的下標看成多項式的指數,然后再對應相乘相加就可以了,注意系數超過8位 將超八位的補分進位。
#include <iostream>#include <vector>#include <cstring>#include <cstdio>using namespace std;typedef long long LL;struct BigInteger{ static const int BASE = 100000000; static const int WIDTH = 8; vector<int> s; BigInteger operator = (const string& str){ s.clear(); int x, len=(str.length()-1)/WIDTH+1; for(int i=0;i<len;i++){ int r=str.length()-i*WIDTH; int l=max(0,r-WIDTH); sscanf(str.substr(l,r-l).c_str(),"%d",&x); s.push_back(x); } return *this; } BigInteger operator * (const BigInteger& b){ BigInteger c; int lena=this->s.size(),lenb=b.s.size(),lenc=lena+lenb-1; LL *buf =new LL[lenc+1]; for(int i=0;i<lenc+1;i++)buf[i]=0; for(int i=0;i<lena;i++) for(int j=0;j<lenb;j++){ buf[i+j]+=(this->s[i])*((LL)b.s[j]); buf[i+j+1]+=buf[i+j]/BASE; buf[i+j]=buf[i+j]%BASE; } for(int i=0;i<lenc;i++)c.s.push_back(buf[i]); if(buf[lenc])c.s.push_back(buf[lenc]); return c; } BigInteger operator * (const int& x){ char c[128]; sprintf(c,"%d",x); string str(c); BigInteger res; res=str; return *this*res; }}; ostream& operator<<(ostream& out,const BigInteger& b){ int len=b.s.size(); out<<b.s[len-1]; for(int i=len-2;i>=0;i--){ int buf=b.s[i],h=8; while(buf>0){buf/=10;h--;} for(int j=0;j<h;j++)out<<0; if(b.s[i])out<<b.s[i]; } return out;} int main(){ int n;BigInteger b; b="1000000000000"; cout<< b<<endl; cout<< (b*b)*4*b*b <<endl;}
關于C++中怎么實現一個大整數乘法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。