位集:位集是bool的数组,但每个布尔值均未单独存储,而是通过位集优化空间,以使每个bool仅占用1位空间,因此位集bs占用的空间小于bool bs [N]和向量的空间bs(N)。但是,位集的限制是,必须在编译时知道N,即常量(此限制在矢量和动态数组中不存在)
std :: bitset :: to_ullong
此函数将位集的内容转换为无符号的long long整数。比特集的第一位对应于该数字的最低有效位,而最后一位对应于该最高有效位。
句法:
bit.to_ullong()
这里的位是以位为单位的数字(即101代表5)
- We are not passing any parameters
Return:
- Return the converted integer.
Exceptions:
- overflow_error will occur if the value can not be represented in unsigned long long.
Parameters:
例子:
Input : 1010
Output : 10
Input : 10000001
Output :129
#代码1:
#include
#include
#include
using namespace std;
int main()
{
bitset::digits> b(10);
cout << b << endl << b.to_ullong();
return 0;
}
//Code is improved by Rajnis09
输出:
0000000000000000000000000000000000000000000000000000000000001010
10
#代码2:
#include
#include
#include
using namespace std;
int main()
{
bitset::digits> b(20);
cout << b << endl << b.to_ullong();
return 0;
}
输出:
0000000000000000000000000000000000000000000000000000000000010100
20
std :: bitset :: to_ulong
此函数将位集的内容转换为无符号的长整数。比特集的第一位对应于该数字的最低有效位,而最后一位对应于该最高有效位。
句法:
bit.to_ulong()
这里的位是以位为单位的数字(即101代表5)
Parameters:
Return:
Exceptions associated:
例子:
Input : 1010
Output : 10
Input : 10000001
Output :129
#代码1:
#include
#include
#include
using namespace std;
int main()
{
bitset::digits> b(10);
cout << b << endl << b.to_ulong();
return 0;
}
输出:
0000000000000000000000000000000000000000000000000000000000001010
10
#代码2:
#include
#include
#include
using namespace std;
int main()
{
bitset::digits> b(20);
cout << b << endl << b.to_ulong();
return 0;
}
输出:
0000000000000000000000000000000000000000000000000000000000010100
20
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。