我正在寻找一个大整数的库,但有固定的宽度(128或256就足够了).原因是我不想在堆上进行任何分配.
我试图自己制作它们但是实现乘法,除法和模数一种有效的方式似乎是一种非常痛苦的方法.
我试图自己制作它们但是实现乘法,除法和模数一种有效的方式似乎是一种非常痛苦的方法.
这已经存在吗?
谢谢
解决方法
看看GMP库:www.gmplib.org
引用功能类别:
Low-level positive-integer,
hard-to-use,very low overhead
functions are found in the mpn
category. No memory management is
performed; the caller must ensure
enough space is available for the
results. (…)
这似乎是你需要的.