gpt4 book ai didi

c++ - 查找 cpp_int 二进制长度的简单方法

转载 作者:行者123 更新时间:2023-12-01 14:51:00 25 4
gpt4 key购买 nike

找出任意精度 cpp_int 有多少位的最简单方法是什么?例如,300 可以用最少 9 位来表示。

我想象一个算法,重复右移直到值达到0,我想知道是否有更简单的解决方案。

最佳答案

Boost 具有内置的最高有效位 操作,请参阅 this page 上的示例

cpp_int i = 300;
unsigned int required_bits = msb(i);

关于c++ - 查找 cpp_int 二进制长度的简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25132841/

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