初涉算法——大整数类

  • 处理方法:用数组存储整数。
  • C++好处:重载运算符,使大整数类可以像int一样使用。

结构体BigInteger可用于储存高精度非负整数:

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<vector>
 4 #include<iostream>
 5 using namespace std;
 6
 7 struct BigInteger {
 8   static const int BASE = 100000000;
 9   static const int WIDTH = 8;
10   vector<int> s;        //用来保存大整数的各个位数
11
12   BigInteger(long long num = 0) { *this = num; }    //构造函数
13   BigInteger operator = (long long num)             //赋值运算符
14   {
15     s.clear();
16     do {
17       s.push_back(num % BASE);
18       num /= BASE;
19     } while(num > 0);
20     return *this;
21   }
22   BigInteger operator = (const string& str)     //赋值运算符
23   {
24     s.clear();
25     int x, len = (str.length() - 1) / WIDTH + 1;
26     for(int i = 0; i < len; i++) {
27       int end = str.length() - i*WIDTH;
28       int start = max(0, end - WIDTH);
29       sscanf(str.substr(start, end-start).c_str(), "%d", &x);
30       s.push_back(x);
31     }
32     return *this;
33   }
34   BigInteger operator + (const BigInteger& b) const {  //减法、乘法和除法的原理类似,可参考代码仓库
35     BigInteger c;
36     c.s.clear();
37     for(int i = 0, g = 0; ; i++) {
38       if(g == 0 && i >= s.size() && i >= b.s.size()) break;
39       int x = g;
40       if(i < s.size()) x += s[i];
41       if(i < b.s.size()) x += b.s[i];
42       c.s.push_back(x % BASE);
43       g = x / BASE;
44     }
45     return c;
46   }
47 };
48
49 ostream& operator << (ostream &out, const BigInteger& x) {        //可以用cout<<的方式进行输出
50   out << x.s.back();
51   for(int i = x.s.size()-2; i >= 0; i--) {
52     char buf[20];
53     sprintf(buf, "%08d", x.s[i]);
54     for(int j = 0; j < strlen(buf); j++) out << buf[j];
55   }
56   return out;
57 }
58
59 istream& operator >> (istream &in, BigInteger& x) {                //可以用cin>>的方式进行输入
60   string s;
61   if(!(in >> s)) return in;
62   x = s;
63   return in;
64 }
65
66 #include<set>
67 #include<map>
68 set<BigInteger> s;
69 map<BigInteger, int> m;
70
71 int main() {
72   BigInteger y;
73   BigInteger x = y;
74   BigInteger z = 123;
75   BigInteger a, b;
76   cin >> a >> b;
77   cout << a + b << "\n";
78   cout << BigInteger::BASE << "\n";            //BASE为static成员变量
79   return 0;
80 }
时间: 2024-10-18 01:10:33

初涉算法——大整数类的相关文章

大整数类

大整数类又叫高精度. 就是求大数的四则运算的算法, (其实就是模拟小学生算数的方法, 什么? 你不会, 那你还不如小学生, 哈哈!). 在这里只贴加法运算符的重载,其他的运算符与加法类似.闲言少叙, 直接上代码(小声告诉你, 里面用了几个库函数和STL, 嘿嘿!!!). 1 #include<cstdio> 2 #include<cstring> 3 #include<vector> 4 #include<iostream> 5 using namespac

算法---大整数相加

原文:算法---大整数相加 开通博客开始第一次写发表算法博客.深知一半算法考试都是用C,C++,由于大四开始到今年毕业工作到现在一直从事C#开发,C++用得很少了.链表,指针也只知道一个概念了.用得没以前熟练了.所以后续更新的算法题我都是基于C#语法的.算法主要体现的是解题思路.跟题目一样,本次算法主要实现大数据相加. 解题思路: 1. 将大数据存储到一个链表中,C#中用List<int>来存储,每个节点表示每一位的数字. {1,2,3,4,5} =>12345 和{9,6,5,9,5}

N!的阶乘附带简单大整数类的输入输出(暂时没有深入的了解)

Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N! 我的思路:就想着大整数类去了,才发现自己还不能很好的掌握,其实这是一个大整数与int的乘法,一个50000的数组完全可以解决,看来分析问题的能力还是比较弱呀,希望能够提升分析问题的全局能力! #include<iostream>#include<cstdio>#include<string>#include<cstring>#inc

大整数类BIGN的设计与实现 C++高精度模板

首先感谢刘汝佳所著的<算法竞赛入门经典>. 众所周知,C++中储存能力最大的unsigned long long 也是有着一个上限,如果我们想计算非常大的整数时,就不知所措了,所以,我写了一个高精度类,允许大整数的四则运算 这个类利用字符串进行输入输出,并利用数组进行储存与处理,通过模拟四则运算,可以计算很大的整数的加减乘除比大小. 贴上我的代码: #include<string> #include<iostream> #include<iosfwd> #i

算法-大整数加法

注意这里是整数,浮点数需要额外的操作,实现大整数的加减,三个栈就OK了,两个运算整数栈,一个结果栈,基本的逻辑的就是利用栈的先入后出的特点将高位push到栈底,低位push到栈顶,之后两个栈pop出来之后push到结果栈,结果栈pop出来就是我们想要的结果.看起来还不错,如果有兴趣就看下面的代码,代码通过OC实现,原理类似: 鉴于OC没有Stack,先简单实现一个栈吧: Stack.h: @interface Stack : NSObject //栈顶的元素 @property (strong,

用Java的大整数类Integer来实现大整数的一些运算

import java.io.*; import java.util.*; import java.math.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); BigInteger a, b; while(sc.hasNext()) { a = sc.nextBigInteger(); b = sc.nextBigInteger(); Syste

定义一个大整数类,并重载乘法*运算符

1 struct bigint{ 2 int a[500]; //可表示1000位以内的整数 3 bigint& operator*(int & value){ 4 for(int i=0;i<300;i++) 5 a[i]=a[i]*value; 6 int c=0; 7 for(int i=0;i<300;i++) 8 { 9 a[i]=a[i]+c; 10 c=a[i]/100; 11 a[i]=a[i]%100; 12 } 13 return *this; 14 } 1

大整数类(已完善)

在这里吐槽CSDN,代码保存在CSDN上面,复制下来变成一堆乱码,垃圾的要死.以后慢慢转博客园 偷偷告诉你们,python的的大数可以像c语言的int类型使用,打算学python了 #include<iostream> #include<cstring> #include<iomanip> #include<algorithm> #include<cstdlib> #include<cstdio> using namespace st

uva 10862 Connect the Cable Wires大整数类c++

1: 1 2:1+(1+1) 3:1+2+(2+3) 4:1+2+5+(5+8) 而斐波那契数列1 1 2 3 5 8…… 因此推出a[n]=a[n-1]+fib[2*i-1]+fib[2*1-2]; java代码 import java.util.*; import java.math.*; public class Main { public static void main(String args[]){ BigInteger [] ans=new BigInteger[2010]; an