bitset库

Posted chendeqiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bitset库相关的知识,希望对你有一定的参考价值。

C++语言的一个类库,用来方便地管理一系列的bit位而不用程序员自己来写代码。
bitset除了可以访问指定下标的bit位以外,还可以把它们作为一个整数来进行某些统计。

一、函数

命令 功能
(constructor) 构造函数
all 测试所有的标志位是否置位
any 测试是否有标志位置位
count 返回标志位的个数
flip 翻转所有的或者指定位置的标志位
none 测试是否没有标志位置位
reset 复位所有的标志位
set 置位所有的标志位
size 返回标志位的个数
test 测试指定位置的标志位是否置位
to_string 转化为string表示
to_ullong 转化为unsigned long long.
to_ulong 转化为unsigned long

operator!=
operator&= 按位与赋值
operator<< 向左移位
operator<<=
operator==
operator>>
operator>>=
operator[] 访问指定的标志位
operator^= 按位异或赋值
operator|= 按位或赋值
operator~ 按位非

二、构造函数

bitset<4> bitset1;  //无参构造,长度为4,默认每一位为0
bitset<8> bitset2(12);  //长度为8,二进制保存,前面用0补充
string s = "100101";
bitset<10> bitset3(s);  //长度为10,前面用0补充
char s2[] = "10101";
bitset<13> bitset4(s2);  //长度为13,前面用0补充
cout << bitset1 << endl;  //0000
cout << bitset2 << endl;  //00001100
cout << bitset3 << endl;  //0000100101
cout << bitset4 << endl;  //0000000010101

参考链接:
https://zh.wikibooks.org/wiki/C%2B%2B/Bitset
https://www.baidu.com/link?url=V3XjRzifgSVzhRmUVntzCkojPjSz_zdedSb0GrWjpPG7sBioMcrp1Jykt4IQ3_n0LPUCkRKjaoyN5E-BTtDQSq&wd=&eqid=858f10fa001d6bae000000025d9442e5














以上是关于bitset库的主要内容,如果未能解决你的问题,请参考以下文章

C++ Primer 5th笔记(chap 17 标准库特殊设施)bitset类型

C++ Primer 5th笔记(chap 17 标准库特殊设施)bitset类型

[C++] 用bitset代替bool数组的性能测试以及bitset的基本使用

[C++] 用bitset代替bool数组的性能测试以及bitset的基本使用

C++ Primer 5th笔记(chap 17 标准库特殊设施)bitset操作

C/C++基础----标准库几个工具库tuple,bitset,正则表达式,随机数,IO库