c++大数类

本文介绍了C++中实现大数类(BigNum)的方法,包括大数的初始化、转换、基本运算(加减乘除)、比较操作以及输入输出。通过自定义大数类,可以进行大整数的高效处理和计算。
摘要由CSDN通过智能技术生成
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <algorithm>
#define LL long long
#define INF 0x3f3f3f3f

using namespace std;
const int M = 1e3+10;
const int MAXN = 9;
class BigNum {
    public:
        int a[M],len,sign;
        void init();
        void assignString(const char*);
        void assignInt(LL);
        LL toInt()const;

        BigNum();
        BigNum(LL);//int -> BigNum
        BigNum(const char*);//char -> BigNum
        BigNum(const BigNum &); //BigNum = BigNum

        BigNum &operator = (const BigNum &);
        friend istream& operator>>(istream&,BigNum&);
        friend ostream& operator<<(ostream&,BigNum&);

        BigNum operator + (const BigNum&)const;
        BigNum operator - (const BigNum&)const;
        BigNum operator * (const BigNum&)const;
        BigNum operator / (const BigNum&)const ;

        bool operator > (const BigNum&)const;
        bool operator < (const BigNum&)const;

        BigNum operator + (const LL&)const;//all
        BigNum operator - (const LL&)const;//all
        BigNum operator * (const LL&)const;//all
        BigNum operator / (const LL&)const;//LL != 0 && BigNum all
        BigNum operator ^ (const LL&)const;//LL >= 0 && BigNum >= 0
        LL operator % (const LL&)const;//BigNum >=0 && LL > 0
};
void BigNum::init() {
    len = 0;
    sign = 1;
    memset(a,0,sizeof(a));
}
void BigNum::assignString(const char *s) {
    init();
    int l = strlen(s);
    int k = 0;
    if(s[0] == '-') {
        sign = -1;
        k++;
    }
    int j = 0;
    for(LL seed = 1; seed < MAXN; seed *= 10,j++) ;
    bool flag = false;
    for(int i = l-1; i >= k; i -= j) {
        for(int jj = m
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值