-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhp_int.cpp
269 lines (221 loc) · 4.13 KB
/
hp_int.cpp
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#include "hp_int.h"
using namespace std;
namespace hpa
{
hp_int::hp_int()
{
sign = positive;
}
hp_int::hp_int(string s)
{
sign = positive;
from_string(s);
}
void hp_int::set_base(usint b)
{
absv.set_base(b);
}
void hp_int::from_string(string s)
{
sign = positive;
if (s[0] == '-') {
sign = negative;
absv.from_string(s.substr(1));
}
else
absv.from_string(s);
if (absv.is_zero())
sign = positive;
}
string hp_int::to_string()
{
if (sign == negative)
return '-' + absv.to_string();
else
return absv.to_string();
}
bool hp_int::is_even()
{
if (absv.is_even())
return true;
else
return false;
}
ostream& operator<<(ostream& os, const hp_int& rhs)
{
string s;
s = rhs.to_string();
os << s;
return os;
}
istream& operator>>(istream& is, hp_int& rhs)
{
string s;
is >> s;
rhs.from_string(s);
return is;
}
hp_int& hp_int::operator=(const hp_int& rhs)
{
if (this != &rhs) {
sign = rhs.sign;
absv = rhs.absv;
}
return *this;
}
hp_int& hp_int::operator+=(const hp_int& rhs)
{
if (sign == rhs.sign)
absv = absv + rhs.absv;
else
if (sign == negative)
if (rhs.absv >= absv) {
absv = rhs.absv - absv;
sign = positive;
}
else
absv = absv - rhs.absv;
else
if (absv >= rhs.absv)
absv = absv - rhs.absv;
else {
absv = rhs.absv - absv;
sign = negative;
}
if (absv.is_zero())
sign = positive;
return *this;
}
const hp_int hp_int::operator+(const hp_int& rhs) const
{
return hp_int(*this) += rhs;
}
hp_int& hp_int::operator-=(const hp_int& rhs)
{
if (sign + rhs.sign == 0)
absv = absv + rhs.absv;
else
if (sign == negative)
if (rhs.absv >= absv) {
absv = rhs.absv - absv;
sign = positive;
}
else
absv = absv - rhs.absv;
else
if (absv >= rhs.absv)
absv = absv - rhs.absv;
else {
absv = rhs.absv - absv;
sign = negative;
}
if (absv.is_zero())
sign = positive;
return *this;
}
const hp_int hp_int::operator-(const hp_int& rhs) const
{
return hp_int(*this) -= rhs;
}
hp_int& hp_int::operator*=(const hp_int& rhs)
{
if (sign * rhs.sign == 1)
sign = positive;
else
sign = negative;
absv = absv * rhs.absv;
if (absv.is_zero())
sign = positive;
return *this;
}
const hp_int hp_int::operator*(const hp_int& rhs) const
{
return hp_int(*this) *= rhs;
}
hp_int& hp_int::operator/=(const hp_int& rhs)
{
if (sign * rhs.sign == 1)
sign = positive;
else
sign = negative;
absv = absv / rhs.absv;
if (absv.is_zero())
sign = positive;
return *this;
}
const hp_int hp_int::operator/(const hp_int& rhs) const
{
return hp_int(*this) /= rhs;
}
hp_int& hp_int::operator%=(const hp_int& rhs)
{
sign = positive;
absv = absv % rhs.absv;
return *this;
}
const hp_int hp_int::operator%(const hp_int& rhs) const
{
return hp_int(*this) %= rhs;
}
hp_int& hp_int::operator^=(const hp_int& rhs)
{
if (rhs.sign == negative) {
sign = positive;
absv = hp_uint("0");
return *this;
}
if (sign == negative)
if (rhs.is_even())
sign = positive;
else negative;
absv = (absv^rhs.absv);
return *this;
}
const hp_int hp_int::operator^(const hp_int& rhs) const
{
return (hp_int(*this) ^= rhs);
}
bool hp_int::operator<(const hp_int& rhs) const
{
if (sign < rhs.sign)
return true;
else if (sign > rhs.sign)
return false;
else
if (sign == positive)
return absv < rhs.absv;
else
return absv > rhs.absv;
}
bool hp_int::operator>(const hp_int& rhs) const
{
return !(*this <= rhs);
}
bool hp_int::operator<=(const hp_int& rhs) const
{
if (sign < rhs.sign)
return true;
else if (sign > rhs.sign)
return false;
else
if (sign == positive)
return absv <= rhs.absv;
else
return absv >= rhs.absv;
}
bool hp_int::operator>=(const hp_int& rhs) const
{
return !(*this < rhs);
}
bool hp_int::operator!=(const hp_int& rhs) const
{
return !(*this == rhs);
}
bool hp_int::operator==(const hp_int& rhs) const
{
if (sign != rhs.sign)
return false;
else
return absv == rhs.absv;
}
}