-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbig_integer.h
More file actions
94 lines (73 loc) · 3.1 KB
/
Copy pathbig_integer.h
File metadata and controls
94 lines (73 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#ifndef BIG_INTEGER_H
#define BIG_INTEGER_H
#include <bits/stdc++.h>
#include "my_vector.h"
struct big_integer
{
big_integer();
big_integer(big_integer const& other);
big_integer(int a);
explicit big_integer(std::string const& str);
~big_integer();
big_integer& operator=(big_integer const& other);
big_integer& operator+=(big_integer const& rhs);
big_integer& operator-=(big_integer const& rhs);
big_integer& operator*=(big_integer const& rhs);
big_integer& operator/=(big_integer const& rhs);
big_integer& operator%=(big_integer const& rhs);
big_integer& operator&=(big_integer const& rhs);
big_integer& operator|=(big_integer const& rhs);
big_integer& operator^=(big_integer const& rhs);
big_integer& operator<<=(int rhs);
big_integer& operator>>=(int rhs);
big_integer operator+() const;
big_integer operator-() const;
big_integer operator~() const;
big_integer& operator++();
big_integer operator++(int);
big_integer& operator--();
big_integer operator--(int);
friend bool operator==(big_integer const& a, big_integer const& b);
friend bool operator!=(big_integer const& a, big_integer const& b);
friend bool operator<(big_integer const& a, big_integer const& b);
friend bool operator>(big_integer const& a, big_integer const& b);
friend bool operator<=(big_integer const& a, big_integer const& b);
friend bool operator>=(big_integer const& a, big_integer const& b);
friend std::string to_string(big_integer const& a);
big_integer& operator*=(int a);
big_integer& operator+=(unsigned a);
int operator/=(int a);
private:
my_vector number;
bool sign;
friend void make_binary_convenient2(big_integer& a, big_integer& b);
void make_binary_convenient();
void return_good_form();
void reverse_bits();
friend big_integer abs(big_integer a);
// //
friend int compare(big_integer const& a, big_integer const& b);
friend int abs_compare(big_integer const& a, big_integer const& b);
static const unsigned max_value = ((unsigned)1 << 30);
static const unsigned max_value_good = max_value - 1;
static const int shift = 30;
};
big_integer operator+(big_integer a, big_integer const& b);
big_integer operator-(big_integer a, big_integer const& b);
big_integer operator*(big_integer a, big_integer const& b);
big_integer operator/(big_integer a, big_integer const& b);
big_integer operator%(big_integer a, big_integer const& b);
big_integer operator&(big_integer a, big_integer const& b);
big_integer operator|(big_integer a, big_integer const& b);
big_integer operator^(big_integer a, big_integer const& b);
big_integer operator<<(big_integer a, int b);
big_integer operator>>(big_integer a, int b);
bool operator==(big_integer const& a, big_integer const& b);
bool operator!=(big_integer const& a, big_integer const& b);
bool operator<(big_integer const& a, big_integer const& b);
bool operator>(big_integer const& a, big_integer const& b);
bool operator<=(big_integer const& a, big_integer const& b);
bool operator>=(big_integer const& a, big_integer const& b);
std::string to_string(big_integer const& a);
std::ostream& operator<<(std::ostream& s, big_integer const& a);
#endif // BIG_INTEGER_H