IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> 大整数简单四则运算模板(c++) -> 正文阅读

[C++知识库]大整数简单四则运算模板(c++)

常用于计算大的正整数之间的四则运算。
在王道机试指南基础上,有修改其中存在的bug


#include<iostream>
using namespace std;
const int MAXN = 1000;
struct BitInteger {
	int digit[MAXN];
	int length;
	BitInteger() {
		memset(digit, 0, sizeof(digit));
		length = 0;
	}
	BitInteger(int x) {
		memset(digit, 0, sizeof(digit)); 
		length = 0;
		if (x == 0) 
			digit[length++] = x;
		while (x != 0) {
			digit[length++] = x % 10;
			x /= 10;
		}
	}
	BitInteger(string str) {
		memset(digit, 0, sizeof(digit));
		length = str.size();
		for (int i = 0; i < length; ++i)
			digit[i] = str[length - i - 1] - '0';
	}
	BitInteger operator=(int x) {
		memset(digit, 0, sizeof(digit));
		length = 0;
		if (x == 0)
			digit[length++] = x;
		while (x != 0) {
			digit[length++] = x % 10;
			x /= 10;
		}
		return *this;
	}
	BitInteger operator=(string str) {
		memset(digit, 0, sizeof(digit));
		length = str.size();
		for (int i = 0; i < length; ++i)
			digit[i] = str[length - i - 1] - '0';
		return *this;
	}
	bool operator<=(const BitInteger& b) {
		if (length < b.length)
			return true;
		else if (b.length < length)
			return false;
		else {
			for (int i = length - 1; i >= 0; --i) {
				if (digit[i] != b.digit[i])
					return digit[i] < b.digit[i];
			}
		}
		return true;
	}
	bool operator>(const BitInteger b) {
		if (length > b.length)
			return true;
		else if (length < b.length)
			return false;
		else {
			for (int i = length - 1; i >= 0; --i) {
				if (digit[i] != b.digit[i])
					return digit[i] > b.digit[i];
			}
		}
		return true;
	}
	bool operator<(const BitInteger b) {
		if (length < b.length)
			return true;
		else if (length > b.length)
			return false;
		else {
			for (int i = length - 1; i >= 0; --i) {
				if (digit[i] != b.digit[i])
					return digit[i] < b.digit[i];
			}
		}
		return true;
	}
	BitInteger operator+(const BitInteger b) {
		int carry = 0;
		BitInteger ans;
		for (int i = 0; i < length || i < b.length; ++i) {
			int cur = digit[i] + b.digit[i] + carry;
			carry = cur / 10;
			ans.digit[ans.length++] = cur % 10;
		}
		if (carry != 0) 
			ans.digit[ans.length++] = carry;
		return ans;
	}
	BitInteger operator-(BitInteger &b) {
		int remain = 0,temp;
		bool minus = false;
		BitInteger ans;
		if (*this < b) {
			for (int i = max(length, b.length) - 1; i >= 0; --i) {
				temp = digit[i];
				digit[i] = b.digit[i];
				b.digit[i] = temp;
			}
			temp = length;
			length = b.length;
			b.length = temp;
			minus = true;
		}
		for (int i = 0; i < length; ++i) {
			int cur = digit[i] - b.digit[i] - remain;
			if (cur < 0) {
				cur += 10;
				remain = 1;
			}
			else
				remain = 0;
			ans.digit[ans.length++] = cur;
		}
		while (ans.digit[ans.length - 1] == 0 && ans.length > 1)
			ans.length--;
		if(minus)
			ans.digit[ans.length - 1] *= -1;
		return ans;
	}
	BitInteger operator*(const BitInteger& b) {
		
		//* 简便方法一,借助加法进行运算
		/*BitInteger ans;
		int cnt;
		for (int j = 0; j < b.length; ++j) {
			cnt = b.digit[j] * int(pow(10,j));
			while (cnt--)
				ans = ans + *this;
		}
		return ans;*/
		//* 方法二,借助加法进行运算
		BitInteger ans;
		ans.length = length + b.length;
		for (int i = 0; i < length; ++i) {
			for (int j = 0; j < b.length; ++j) {
				ans.digit[i + j] = digit[i] * b.digit[j];
			}
		}
		//最多向前进一位数值
		for (int i = 0; i < ans.length; ++i) {
			ans.digit[i + 1] += ans.digit[i] / 10;
			ans.digit[i] = ans.digit[i] % 10;
		}
		//除去多余的前导数字0
		while (ans.length > 1 && ans.digit[ans.length - 1] == 0)
			ans.length--;
		return ans;
	}
	BitInteger operator/(const BitInteger& b) {
		BitInteger ans;
		ans.length = length;
		BitInteger remainder = 0;
		BitInteger temp = b;
		for (int i = length - 1; i >= 0; --i) {
			if (!(remainder.length == 1 && remainder.digit[0] == 0)) {
				for (int j = remainder.length - 1; j >= 0; --j)
					remainder.digit[j + 1] = remainder.digit[j];
				remainder.length++;
			}
			remainder.digit[0] = digit[i];
			while (temp <= remainder) {
				remainder = remainder - temp;
				ans.digit[i]++;
			}
		}
		while (ans.length > 1 && ans.digit[ans.length - 1] == 0)
			ans.length--;
		return ans;
	}
	BitInteger operator%(const BitInteger b) {
		BitInteger remainder = 0;
		BitInteger temp = b;
		for (int i = length - 1; i >= 0; --i) {
			if (!(remainder.length == 1 && remainder.digit[0] == 0)) {
				for (int j = remainder.length - 1; j >= 0; --j)
					remainder.digit[j + 1] = remainder.digit[j];
				remainder.length++;
			}
			remainder.digit[0] = digit[i];
			while (temp <= remainder)
				remainder = remainder - temp;
		}
		return remainder;
	}
	friend istream& operator>>(istream& in, BitInteger& x) {
		string str;
		cin >> str;
		x = str;
		return in;
	}
	friend ostream& operator<<(ostream& out, const BitInteger& x) {
		for (int i = x.length - 1; i >= 0; --i)
			out << x.digit[i];
		return out;
	}
};
int main()
{
	BitInteger a,b;
	cin >> a;
	cin >> b;
	cout << "a = " << a << endl;
	cout << "b = " << b << endl;
	cout << "a + b = " << a + b << endl;
	cout << "a - b = " << a - b << endl;
	cout << "a * b = " << a * b << endl;
	cout << "a / b = " << a / b << endl;
	cout << "a % b = " << a % b << endl;
}

运行示例:
在这里插入图片描述

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-21 20:30:29  更:2022-03-21 20:31:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:30:29-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码