c – 固定长度的大整数

前端之家收集整理的这篇文章主要介绍了c – 固定长度的大整数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一个大整数的库,但有固定的宽度(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. (…)

这似乎是你需要的.

原文链接:https://www.f2er.com/c/239495.html

猜你在找的C&C++相关文章