亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中怎么實現一個大整數乘法

發布時間:2021-08-07 14:33:40 來源:億速云 閱讀:141 作者:Leah 欄目:編程語言

這篇文章給大家介紹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++中怎么實現一個大整數乘法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

汤阴县| 弥勒县| 金塔县| 河池市| 尤溪县| 吴川市| 平顶山市| 罗山县| 青田县| 宜州市| 黄梅县| 丰县| 开化县| 宽城| 佛山市| 晋中市| 左贡县| 十堰市| 中西区| 龙门县| 奈曼旗| 永春县| 连云港市| 汕尾市| 三台县| 会同县| 夹江县| 隆昌县| 成武县| 南安市| 绍兴县| 安新县| 阿合奇县| 府谷县| 长沙县| 珲春市| 奉新县| 绥中县| 保山市| 朝阳市| 荥经县|