gpt4 book ai didi

c++ - 如何将位串存储在数组中?

转载 作者:太空宇宙 更新时间:2023-11-04 00:41:38 25 4
gpt4 key购买 nike

如何计算 1 在 8 位字符串中出现的次数。例如 10110001。位串取自用户。像 10110001在c中应该使用什么类型的数组来存储这个位串?

最佳答案

简短而简单。使用 std::bitset (C++)

#include <iostream>
#include <bitset>

int main()
{
std::bitset<8> mybitstring;
std::cin >> mybitstring;
std::cout << mybitstring.count(); // returns the number of set bits
}

Online Test at Ideone

关于c++ - 如何将位串存储在数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5772083/

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