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
|
/* Based on Steven Skiena source code. licensed as LGPL
* http://www.cs.sunysb.edu/~skiena/392/programs/bignum.c
* --pancake
*/
/* XXX : seems broken for big numbers */
#include <stdio.h>
#include <r_util.h>
static inline void r_big_zero(RNumBig *n) {
while ((n->last>0) && !n->dgts[n->last])
n->last--;
if (!n->last && !*n->dgts)
n->sign = 1; /* hack to avoid -0 */
}
R_API void r_big_print(RNumBig *n) {
int i;
if (n->last>=0) {
if (n->sign<0)
printf ("-");
for (i=n->last; i>=0; i--)
printf ("%c", '0'+n->dgts[i]);
printf ("\n");
}
}
R_API void r_big_set_str(RNumBig *n, const char *str) {
int i, len;
if (*str=='-') {
n->sign = -1;
str++;
} else n->sign = 1;
for (i=len=strlen (str)-1; *str; i--, str++)
n->dgts[i] = *str-'0';
n->last = len;
}
R_API RNumBig *r_big_new(RNumBig *b) {
RNumBig *n = R_NEW (RNumBig);
if (n) {
if (b) memcpy (n, b, sizeof (RNumBig));
else r_big_set_st (n, 0);
}
return n;
}
R_API void r_big_free(RNumBig *b) {
free (b);
}
R_API void r_big_set(RNumBig *a, RNumBig *b) {
memcpy (a, b, sizeof (RNumBig));
}
R_API void r_big_set_st(RNumBig *n, int v) {
int t;
n->last = 0;
n->sign = (v>=0)?1:-1;
memset (n->dgts, 0, R_BIG_SIZE);
for (n->last=0, t=R_ABS (v); t>0; t/=10, n->last++)
n->dgts[n->last] = (t % 10);
if (!v) n->last = 0;
}
R_API void r_big_set_st64(RNumBig *n, st64 v) {
st64 t;
n->sign = (v<0)?-1:1;
memset (n->dgts, 0, R_BIG_SIZE);
n->last = 0;//-1;
for (t=R_ABS(v); t>0; t/=10) {
n->last++;
n->dgts[n->last] = t%10;
}
if (!v) n->last = 0;
}
/* c = a [+*-/] b; */
R_API void r_big_add (RNumBig *c, RNumBig *a, RNumBig *b) {
int i, carry;
RNumBig t;
r_big_set_st (&t, 0);
if (a->sign != b->sign) {
a->sign = 1;
if (a->sign == -1)
r_big_sub (&t, b, a);
else r_big_sub (&t, a, b);
a->sign = -1;
*c = t;
return;
} else t.sign = a->sign;
t.last = R_MAX (a->last, b->last)+1;
for (carry=i=0; i<=t.last && i<R_BIG_SIZE; i++) {
t.dgts[i] = (char) (carry+a->dgts[i]+b->dgts[i]) % 10;
carry = (carry + a->dgts[i] + b->dgts[i]) / 10;
}
*c = t;
r_big_zero (c);
}
R_API void r_big_sub(RNumBig *c, RNumBig *a, RNumBig *b) {
RNumBig t;
int i, v, borrow;
r_big_set_st (&t, 0);
if ((a->sign == -1) || (b->sign == -1)) {
b->sign *= -1;
r_big_add (&t, a, b);
b->sign *= -1;
*c = t;
return;
}
if (r_big_cmp (a, b) == 1) {
r_big_sub (&t, b, a);
t.sign = -1;
*c = t;
return;
}
t.last = R_MAX (a->last, b->last);
for (borrow=i=0; i<=(t.last) &&i<R_BIG_SIZE; i++) {
v = (a->dgts[i] - borrow - b->dgts[i]);
if (v < 0) {
v += 10;
borrow = 1;
} else
if (a->dgts[i] > 0)
borrow = 0;
t.dgts[i] = (char) v % 10;
}
*c = t;
r_big_zero (c);
}
R_API int r_big_cmp(RNumBig *a, RNumBig *b) {
int i;
if ((a->sign == -1) && (b->sign == 1)) return 1;
if ((a->sign == 1) && (b->sign == -1)) return -1;
if (b->last > a->last) return a->sign;
if (a->last > b->last) return a->sign*-1;
for (i = a->last; i>=0; i--) {
if (a->dgts[i] > b->dgts[i]) return a->sign*-1;
if (b->dgts[i] > a->dgts[i]) return a->sign;
}
return 0;
}
R_API int r_big_cmp_st(RNumBig *n, int v) {
return 0;
}
/* multiply n by 10^d */
R_API void r_big_shift(RNumBig *n, int d) {
int i;
if (!n->last && !*n->dgts)
return;
for (i=n->last; i>=0; i--)
n->dgts[i+d] = n->dgts[i];
memset (n->dgts, 0, d);
n->last += d;
}
R_API void r_big_mul (RNumBig *c, RNumBig *a, RNumBig *b) {
RNumBig t, tmp, row;
int i,j;
r_big_set_st (&t, 0);
r_big_set_st (&tmp, 0);
row = *a;
for (i=0; i<=b->last && i<R_BIG_SIZE; i++) {
for (j=1; j<=b->dgts[i]; j++) {
r_big_add (&tmp, &t, &row);
t = tmp;
}
r_big_shift (&row, 1);
}
*c = t;
c->sign = a->sign * b->sign;
r_big_zero (c);
}
R_API void r_big_mul_ut (RNumBig *c, RNumBig *a, ut32 b) {
return;
}
R_API void r_big_div(RNumBig *c, RNumBig *a, RNumBig *b) {
RNumBig t, tmp, row;
int i, asign, bsign;
r_big_set_st (&t, 0);
t.sign = a->sign * b->sign;
asign = a->sign;
bsign = b->sign;
a->sign = b->sign = 1;
r_big_set_st (&row, 0);
r_big_set_st (&tmp, 0);
t.last = a->last;
for (i=a->last; i>=0; i--) {
r_big_shift (&row, 1);
*row.dgts = a->dgts[i];
c->dgts[i] = 0;
while (r_big_cmp (&row, b) != 1) {
t.dgts[i]++;
r_big_sub (&tmp, &row, b);
row = tmp;
}
}
*c = t;
r_big_zero (c);
a->sign = asign;
b->sign = bsign;
}
R_API void r_big_div_ut(RNumBig *c, RNumBig *a, ut32 b) {
return;
}
R_API int r_big_divisible_ut(RNumBig *n, ut32 v) {
return 0;
}
R_API void r_big_mod(RNumBig *c, RNumBig *a, RNumBig *b) {
RNumBig t; // a%b = a-((a/b)*b)
r_big_div (c, a, b); // c=a/b
r_big_mul (&t, c, b); // t=c*b
r_big_sub (c, a, &t); // c=a-t
}
|