vote up 1 vote down star

How can I add very large numbers in C++?

flag
This question is repeated. stackoverflow.com/questions/269268/… – jaircazarin-old-account Dec 4 '08 at 5:24
Numbers are not necessarily ints so it may not be exactly the same. – tvanfosson Dec 4 '08 at 5:26
Also Check out here: stackoverflow.com/search?q=BigInt+c%2B%2B – Martin York Dec 4 '08 at 8:28

closed as exact duplicate by Martin York Dec 4 '08 at 8:28

6 Answers

vote up 0 vote down

GMP has a GMPXX C++ wrapper which is kind of nice. GMP supports both integer and floating point numbers, and is LGPL'ed.

I've used it. It's ok, but watch out for creating lots of temporaries. (Potential efficiency hit.)

link|flag
vote up 1 vote down

Do a Google on "Bigint C++" This will provide you with a list of arbitrator precision integer arithmetic libraries.

link|flag
vote up 3 vote down

consider a "bignum" library like: http://gmplib.org/ or http://ttmath.slimaczek.pl/ttmath. take a look at a simple bignum class: http://www.circlemud.org/~jelson/560/

link|flag
vote up 0 vote down

How big is "very large"? A signed long int can go up to 2,147,483,647 and an unsigned long int can go up to 4,294,967,295.

link|flag
Not accurate sizeof(long) >= sizeof(int). So technically long only has to be as big as int (and on most systems nowadays is just 32). long long (A C extension not yet officially supported by C++) has a minimum of 64 bytes. – Martin York Dec 4 '08 at 5:48
You mean 64 bits, not 64 bytes. – TonJ Dec 4 '08 at 8:24
Accurate. sizeof(long) >= sizeof(int) is not the only requirement; the 32 bits range is another. – MSalters Dec 4 '08 at 9:47
vote up 0 vote down

You can find a big decimal implementation at http://speleotrove.com/decimal/

link|flag
vote up 0 vote down

You could use a library like LiDIA for a 'big integer' class.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.