-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbig_integer.h
More file actions
85 lines (68 loc) · 3.23 KB
/
Copy pathbig_integer.h
File metadata and controls
85 lines (68 loc) · 3.23 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
#ifndef BIG_INTEGER_H
#define BIG_INTEGER_H
#include <string>
#include "new_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);
private:
opt_vector body;
int sign;
friend void normalize(big_integer &a);
friend int compareAbs(opt_vector const& a, opt_vector const& b);
big_integer(unsigned long long new_int);
big_integer(unsigned int new_int);
friend int compare(big_integer const& a, big_integer const& b);
friend void multiply(opt_vector &res, const opt_vector &a, uint64_t b);
friend unsigned int binary (const big_integer &dop, const big_integer &second);
friend void div_long_short (big_integer &first, int second);
friend big_integer double_code(big_integer a);
friend big_integer& make_binary_op (big_integer &a, big_integer const &b, int operation);
};
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