Recommendation on big integer calculation library [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this questionCould your recommend some good big integer calculation library in C/C++/Java and it is better to support logarithmetic.
Thanks.
- For C/C++ I would recommend the GNU Multiple Precision Library.
- For Java you might check the built-in math API. It provides by far less functionality than GMP, but depending on what you need, it might meet your requirements.
Java has classes for that in java.math. (BigInteger for instance.)
精彩评论