gpt4 book ai didi

c++ - 将 mpz_t 转换为二进制表示

转载 作者:行者123 更新时间:2023-11-30 01:42:58 24 4
gpt4 key购买 nike

我对大数字使用 mpz_t。我需要将 mpz_t 转换为二进制表示形式。我尝试使用 mpz_export,但返回的数组仅包含 0。

mpz_t test;
mpz_init(test);
string myString = "173065661579367924163593258659639227443747684437943794002725938880375168921999825584315046";
mpz_set_str(test,myString.c_str(),10);
int size = mpz_sizeinbase(test,2);
cout << "size is : "<< size<<endl;
byte *rop = new byte[size];
mpz_export(rop,NULL,1,sizeof(rop),1,0,test);

最佳答案

使用 gmpxx(因为它被标记为 c++)

#include <iostream>
#include <gmpxx.h>

int main()
{
mpz_class a("123456789");
std::cout << a.get_str(2) << std::endl; //base 2 representation
}

plain GMP中应该有等价的功能

关于c++ - 将 mpz_t 转换为二进制表示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38551496/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com