[bigint] Big Integer C++ Library
Matt McCutchen <matt at mattmccutchen.net>
Sun May 3 12:35:24 PDT 2009
On Sun, 2009-05-03 at 21:18 +0800, Wong Peter wrote:
> Hello to you, i wonder how many bit does this big integer supports
> to ?
The library should support integers of up to about 2^31 bits subject to
to available memory (the bitwise accessors may act weird after that
point), but I have never actually tried it. Numbers are represented as
an array of "unsigned long", whatever size that type is in your
environment.
--
Matt
More information about the bigint
mailing list