C or C++ BigInt library on Microsoft Windows

前端 未结 4 1950
心在旅途
心在旅途 2020-12-05 22:18

What arbitrary-precision integers (and or rationals) library are there for compilers running on Microsoft Windows, and which would you recommend?

Please state licens

相关标签:
4条回答
  • 2020-12-05 22:55

    Best bignum library to solve Project Euler problems in C++ ?

    0 讨论(0)
  • 2020-12-05 23:06

    OpenSSL BN type. BSD-style license, pretty sure it's available for windows.

    0 讨论(0)
  • 2020-12-05 23:09

    I have not used it, so I'm pointing you here blind:

    LibTomMath by Tom St Denis: http://libtom.org/

    Public Domain license. Website mentions that the library builds out of the box with GCC 2.95 [and up] as well as Visual C++ v6.00 [with SP5] without configuration.

    A companion book is available: http://www.amazon.com/dp/1597491128

    0 讨论(0)
  • 2020-12-05 23:10

    GMP.

    LGPL. Standard download from official website is designed for GCC. VC++ port is available from here.

    0 讨论(0)
提交回复
热议问题