Tagged Questions
The big-number tag has no wiki summary.
19
votes
7answers
3k views
Arbitrary-precision arithmetic Explanation
I'm trying to learn C and have come across the inability to work with REALLY big numbers (i.e., 100 digits, 1000 digits, etc.). I am aware that there exist libraries to do this, but I want to attempt ...
4
votes
6answers
952 views
long <-> str binary conversion
Is there any lib that convert very long numbers to string just copying the data?
These one-liners are too slow:
def xlong(s):
return sum([ord(c) << e*8 for e,c in enumerate(s)])
def ...
0
votes
1answer
136 views
openssl/bn.h: No such file or directory
I am totally new to Obj-C, and trying to compile Big Number related Objective C files
The function was easy, just to initialize a big number and use NSLog to print it out.
I used
#import ...