Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm doing a project which requires really big numbers, up to 100 digits. I have read that java supports big integers (java.Math.BigInteger), and I want to know if there is something like that in C++. So, here is my question: Is there a standard or non-standard c++ library which implements big integers?

Note: If there is no standard implementation for big integers, I would like a simple non-standard. Thanks in advance.

share|improve this question
1  
You can answer this with a simple websearch. For example: mattmccutchen.net/bigint – David Heffernan Oct 20 '12 at 11:51
@DavidHeffernan: I have to say that I don't mind this as long as there isn't a duplicate SO question; SO questions get improved over time, and the best answers can rise to the top. Essentially this question is more about filtering the possibilities (what should I use) rather than finding them. It's not worded that way, and it is a slightly lazy question, but at least we'll have an answer for it on SO. – Phil H Oct 20 '12 at 12:09

2 Answers

up vote 6 down vote accepted

The GNU Multiple Precision Arithmetic Library does what you want http://gmplib.org/

Gnu MP is a C library but it has a C++ class Interface and if you are interested only in big integers, you may just deal with mpz_class. Look at the sample below which I took from the page C++ Interface General

 int main (void)
 {
   mpz_class a, b, c;

   a = 1234;
   b = "-5678";
   c = a+b;
   cout << "sum is " << c << "\n";
   cout << "absolute value is " << abs(c) << "\n";

   return 0;
 }
share|improve this answer
I would like a simple implementation – Rondogiannis Aristophanes Oct 20 '12 at 12:01
@RondogiannisAristophanes bignum implementations are not simple – bamboon Oct 20 '12 at 12:06
@RondogiannisAristophanes Simple implementation or simple interface? GMP's interface is not so simple, but it's easy to get used to. And it is powerful and efficient. – saeedn Oct 20 '12 at 12:34
Not thrilled. Not enough to downvote, but (1) The question is tagged C++. GMP is C. (2) A good C++ interface will be easy to use; e.g., addition is just '+'. (3) The question asked for big integers. GMP is bignums of all sort. – David Hammen Oct 20 '12 at 13:19
@DavidHammen Maybe I should have addressed a specific part of GMP, not the whole library. About (1) and (2), GMP v5 has a C++ class Interface gmplib.org/manual/C_002b_002b-Class-Interface.html which has also overloaded some operators. – saeedn Oct 20 '12 at 18:22

You said you want a simple interface/implementation, here's one http://www.di-mgt.com.au/bigdigits.html. Personally I'd still go for GMP however.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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