-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbig_integer.h
More file actions
90 lines (75 loc) · 3.08 KB
/
big_integer.h
File metadata and controls
90 lines (75 loc) · 3.08 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
#ifndef BIG_INTEGER_H
#define BIG_INTEGER_H
#include <big_integer.h>
#include <cstddef>
#include <iosfwd>
#include <cstdint>
#include "optimized_vector/op_vector.h"
#include <functional>
struct big_integer
{
public:
big_integer();
big_integer(big_integer const& other);
big_integer(int a);
explicit big_integer(std::string const& str);
~big_integer() = default;
private:
big_integer(op_vector number, bool sign);
public:
op_vector number;
bool sign;
public:
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 big_integer operator/(big_integer a, big_integer const& b);
friend std::string to_string(big_integer const& a);
bool is_zero() const;
private:
big_integer& binary_logical_function(big_integer const& rhs, function<uint32_t(uint32_t, uint32_t)> &f);
big_integer& mul_long_short(uint32_t a);
big_integer& add_long_short(uint32_t a);
uint32_t div_long_short(uint32_t a);
void delete_zeroes();
};
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