如何使用 C 上的 GMP lib 将 mpz_t 分成两部分?

发布于 2024-08-24 00:55:09 字数 135 浏览 7 评论 0原文

在c上使用GMP,我有一个十进制形式的大整数“mpz_t n”,我怎样才能将它分成两部分?事实上,这两个部分在二进制中应该具有相同的长度。

例如,也许我可以将n转换为112位的二进制,然后我想将其切成2个56位的部分。

谢谢

Using GMP on c, I have a big integer "mpz_t n" in decimal form, how can I cut it into 2 parts? In fact, these 2 parts should have the same length in binary.

For example, maybe I can convert the n to a binary of 112bits, then I want to cut it into 2 56bits parts.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一片旧的回忆 2024-08-31 00:55:09

我会使用 temp = mpz_sizeinbase(n,2) 获取原始数字中的位数,然后使用 mpz_tdiv_q_2exp(q, n, temp>>1) 和 mpz_tdiv_r_2exp(r, n, temp>>1) 来获取原始数字的上半部分和下半部分。

根据您想要如何处理奇数位长度,您可能需要调整 temp>>1 的计算。

哈特哈,
卡塞夫赫

I would use temp = mpz_sizeinbase(n,2) to get the number of bits in your original number and then use mpz_tdiv_q_2exp(q, n, temp>>1) and mpz_tdiv_r_2exp(r, n, temp>>1) to get the upper and lower halves of your original number.

Depending on how you want to handle an odd bit length, you may need to adjust the calculation of temp>>1.

HTH,
casevh

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文