bitset库

    技术2022-07-10  134

    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++/Bitset https://www.baidu.com/link?url=V3XjRzifgSVzhRmUVntzCkojPjSz_zdedSb0GrWjpPG7sBioMcrp1Jykt4IQ3_n0LPUCkRKjaoyN5E-BTtDQSq&wd=&eqid=858f10fa001d6bae000000025d9442e5

    Processed: 0.016, SQL: 9