位元:::count()是C++中的内置STL,它以数字的二进制表示形式返回设置的位数。
用法:
int count()
参数:该函数不接受任何参数。
返回值:该函数返回设置的位数。如果传递的数字是整数,它将返回数字的总数或二进制数字表示形式中的设置位数。
下面的程序演示了bitset::count()函数。
示例1:
// CPP program to illustrate the
// bitset::count() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Initialisation of a bitset
bitset<4> b1(string("1100"));
bitset<6> b2(string("001000"));
// Function to count the
// number of set bits in b1
int result1 = b1.count();
cout << b1 << " has " << result1
<< " set bit\n";
// Function to count the
// number of set bits in b2
int result2 = b2.count();
cout << b2 << " has " << result2
<< " set bit";
return 0;
}
输出:
1100 has 2 set bit 001000 has 1 set bit
示例2:
// CPP program to illustrate the
// bitset::count() function
// when the input is an integer
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Initialisation of a bitset
bitset<4> b1(16);
bitset<4> b2(18);
// Function to count the
// number of set bits in b1
int result1 = b1.count();
cout << b1 << " has " << result1
<< " set bit\n";
// Function to count the
// number of set bits in b2
int result2 = b2.count();
cout << b2 << " has " << result2
<< " set bit";
return 0;
}
输出:
0000 has 0 set bit 0010 has 1 set bit
相关用法
- C++ bitset any()用法及代码示例
- C++ bitset none()用法及代码示例
- C++ bitset set()用法及代码示例
- C++ bitset operator[]用法及代码示例
- C++ bitset all()用法及代码示例
- C++ bitset size()用法及代码示例
- C++ bitset::flip()用法及代码示例
- C++ bitset test()用法及代码示例
- C++ bitset reset()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 bitset count() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。