GMP 变量的位大小
在 GMP 库中,
_mp_size 保存整数的肢体数量。
我们可以创建 size 的整数 1肢(32位),2肢(64位),3肢(96位)...依此类推。使用 mpz_init 或 mpz_random 函数..
我们不能创建一个大小为 8 位或 16 位的整数变量..而不是 32 位大小的倍数???
你能编码吗?
谢谢 ..
In GMP library,
_mp_size holds the number of limbs of an integer..
we can create integers of size
1 limb(32bits),2 limbs(64bits),3 limbs(96bits)...so on. using mpz_init or mpz_random functions..
cant we create an integer variable of size 8bit or 16 bit.. other than multiples of 32 bit size ???
can you code for that??
thank you ..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
GNU GMP 库适用于超出标准 C 类型提供的范围的数字。分别使用(无符号)char 或(无符号)short 表示 8 位和 16 位整数。
The GNU GMP library is for numbers that exceed the ranges provided by the standard C types. Use (unsigned) char or (unsigned) short for 8 and 16 bit integers, respectively.
这的实用性有限,因为大多数现代处理器至少使用 32 位字长。
This would be of limited utility, because most modern processors use at least a 32-bit word size.
我认为你不能。以下是 http://gmplib.org 上的讨论摘录/list-archives/gmp-discuss/2004-June/001200.html:
I don't think you can. Here's an excerpt from a discussion at http://gmplib.org/list-archives/gmp-discuss/2004-June/001200.html: