大数运算实现(C++)

实现带符号的大数运算的+,-,*,/,mod以及最大公约数和模数的乘法逆元,参考了以前(不知道哪搜集到的)大数运算的代码实现并进行封装。

本人对C++理解不深,如有错误,欢迎指正!

ClassBigInteger.h

/**************************************************************************

Copyright:Xidian University

Author: bluefire1991

Date:2013-11-5

Description:Provide a Class for Computing BigInteger

**************************************************************************/
#ifndef CLASSBIGINT
#define CLASSBIGINT
#include <string>

class BigInteger
{
public:
	BigInteger();
	BigInteger(const BigInteger &);
	BigInteger(std::string num1);
	~BigInteger();
private:
	std::string _num1;
public:
	//静态方法
	static int compare(std::string num1,std::string num2);//if num1>num2,return 1,else if num1=num2,return 0,else return -1;
	static std::string add(std::string num1,std::string num2);//num1+num2
	static std::string minus(std::string num1,std::string num2);//num1-num2
	static std::string multiply(std::string num1,std::string num2);//num1*num2
	static std::string divide(std::string num1,std::string num2,int floatpoint);//num1/num2
	static std::string mod(std::string num1,std::string num2);//num1 mod num2
	static std::string gcd(std::string num1,std::string num2);//gcd(num1,num2)
	static std::string exgcd(std::string a,std::string b,std::string &x,std::string &y);//if gcd(a,b)=1,a*x+b*y=1,return gcd(a,b),x is inverse of a
	
	//重载操作符
	std::string getnumber() const;
	BigInteger& operator+(const BigInteger&);//+
	BigInteger& operator-(const BigInteger&);//-
	BigInteger& operator*(const BigInteger&);//*
	BigInteger& operator/(const BigInteger&);///
	BigInteger& operator%(const BigInteger&);//mod
};

#endif CLASSBIGINT


ClassBigInteger.cpp

#include "ClassBigInteger.h"


BigInteger::BigInteger()
{

}

BigInteger::BigInteger(std::string num1):_num1(num1)
{

}

BigInteger::BigInteger(const BigInteger &bi)
{
	_num1=bi._num1;
}

BigInteger::~BigInteger()
{

}

std::string BigInteger::getnumber() const
{
	return _num1;
}

BigInteger& BigInteger::operator+(const BigInteger &bi)
{
	_num1=add(_num1,bi._num1);
	return *this;
}

BigInteger& BigInteger::operator-(const BigInteger &bi)
{
	_num1=minus(_num1,bi._num1);
	return *this;
}

BigInteger& BigInteger::operator*(const BigInteger &bi)
{
	_num1=multiply(_num1,bi._num1);
	return *this;
}

BigInteger& BigInteger::operator/(const BigInteger &bi)
{
	_num1=divide(_num1,bi._num1,0);
	return *this;
}

BigInteger& BigInteger::operator%(const BigInteger &bi)
{
	_num1=mod(_num1,bi._num1);
	return *this;
}


int BigInteger::compare(std::string number1,std::string number2)
{
	if(number1[0]!='-'&&number2[0]!='-'){
		int j;
		int length1 = number1.size();
		int length2 = number2.size();

		if(number1.size() == 0) 
			number1 = "0";
		if(number2.size() == 0) 
			number2 = "0";

		j = 0;
		for(int i = 0; i < length1; 
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个简单的 C++ 大数实现,它可以实现大数的加减运算: ``` #include <iostream> #include <string> #include <algorithm> using namespace std; class BigInt { public: string num; BigInt() {} BigInt(string s) { num = s; } BigInt operator+(BigInt b) { BigInt res; int carry = 0; int len1 = num.length(), len2 = b.num.length(); int len = max(len1, len2); for (int i = 0; i < len; i++) { int a = i < len1 ? num[len1 - 1 - i] - '0' : 0; int b = i < len2 ? b.num[len2 - 1 - i] - '0' : 0; int sum = a + b + carry; carry = sum / 10; sum = sum % 10; res.num.insert(0, to_string(sum)); } if (carry) { res.num.insert(0, to_string(carry)); } return res; } BigInt operator-(BigInt b) { BigInt res; int borrow = 0; int len1 = num.length(), len2 = b.num.length(); int len = max(len1, len2); for (int i = 0; i < len; i++) { int a = i < len1 ? num[len1 - 1 - i] - '0' : 0; int b = i < len2 ? b.num[len2 - 1 - i] - '0' : 0; int diff = a - b - borrow; if (diff < 0) { diff += 10; borrow = 1; } else { borrow = 0; } res.num.insert(0, to_string(diff)); } while (res.num.length() > 1 && res.num[0] == '0') { res.num.erase(0, 1); } return res; } void print() { cout << num << endl; } }; int main() { BigInt a("123456789"), b("987654321"); BigInt c = a + b; BigInt d = b - a; c.print(); // 输出 1111111110 d.print(); // 输出 864197532 return 0; } ``` 以上代码实现了 BigInt 类,这个类包含了 num 字符串,用来存储大数。它的构造函数可以接受一个字符串作为参数,用于初始化大数。 类中的 `operator+` 和 `operator-` 分别实现大数的加法和减法。其中,加法的实现比较简单,使用了竖式加法的思想,从低位开始逐位相加,最后将结果逆序输出即可。减法的实现稍微复杂一些,需要考虑借位的情况。 最后,我们在 `main` 函数中创建了两个大数 a 和 b,分别进行了加法和减法运算,并将结果打印出来。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值