首页 > 编程知识 正文

通达信函数手册及用法详解,函数match的用法详解

时间:2023-05-05 04:16:22 阅读:262942 作者:3979

bitset 相当于一个二进制的数组,并且可以直接用01串赋值 bitset<4>a1;//长度为4,默认以0填充bitset<8>a2;//长度为8,将12以二进制保存,前面用0补充string s = "100101";bitset<10>a3(s);//长度为10,前面用0补充//实验检测,char在普通环境不能直接赋值给bitset//要开c++11,针不戳char s2[] = "10101";bitset<13>a4(s2);//长度为13,前面用0补充//所以这玩意noip上不能用……cout<<a1<<endl;//0000cout<<a2<<endl;//00001100cout<<a3<<endl;//0000100101cout<<a4<<endl;//0000000010101 如果超出了bitset定义的范围: bitset<2>bitset1(12);//12的二进制为1100(长度为4),但bitset1的size=2,只取后面部分,即00string s="100101";bitset<4> bitset2(s);//s的size=6,而bitset的size=4,只取前面部分,即1001//char s2[]="11101";//bitset<4> bitset3(s2);//与bitset2同理,只取前面部分,即1110cout << bitset1 << endl;  //00cout << bitset2 << endl;  //1001//cout << bitset3 << endl;  //1110 位运算操作 bitset<4> foo (string("1001"));//这种赋值方式就可以直接用,没有限制bitset<4> bar (string("0011"));cout << (foo^=bar) << endl; // 1010 (foo对bar按位异或后赋值给foo)cout << (foo&=bar) << endl; // 0010 (按位与后赋值给foo)cout << (foo|=bar) << endl; // 0011 (按位或后赋值给foo)cout << (foo<<=2) << endl; // 1100 (左移2位,低位补0,有自身赋值)cout << (foo>>=1) << endl; // 0110 (右移1位,高位补0,有自身赋值)cout << (~bar) << endl; // 1100 (按位取反) cout << (bar>>1) << endl; // 0001 (右移,不赋值)cout << (foo==bar) << endl; // (0)false (0110==0011为false)cout << (foo!=bar) << endl; // (1)true (0110!=0011为true)cout << (foo&bar) << endl; // 0010 (按位与,不赋值)cout << (foo|bar) << endl; // 0111 (按位或,不赋值)cout << (foo^bar) << endl; // 0101 (按位异或,不赋值) 单一元素访问和修改 bitset<4>a1("1011");//这个赋值方法只能在c++11里用,noip八行//可以用上面位运算时的方法bitset<4>a1(string("1011"));cout<<a1[0]<<endl;//1cout<<a1[1]<<endl;//1cout<<a1[2]<<endl;//0cout<<a1[3]<<endl;//1//注意!这两种赋值方式都是反序赋值的//所以输出值为1101;//可以直接输出a1来输出正序//bitset支持单点修改a1[0]=0;cout<<a1[0]<<endl;//0cout<<a1<<endl;//0101 各种函数 bitset<8>foo(string("10011011"));cout<<foo.count()<<endl;//5  (count函数用来求bitset中1的位数,foo中共有5个1cout<<foo.size()<<endl;//8  (size函数用来求bitset的大小,一共有8位cout<<foo.test(0)<< endl;//true  (test函数用来查下标处的元素是0还是1,并返回false或true,此处foo[0]为1,返回truecout<<foo.test(2)<<endl;//false  (同理,foo[2]为0,返回falsecout<<foo.any()<<endl;//true  (any函数检查bitset中是否有1cout<<foo.none()<<endl;//false  (none函数检查bitset中是否没有1cout<<foo.all()<<endl;//false  (all函数检查bitset中是全部为1

这么多应该就够用了,

参考博客:https://www.cnblogs.com/magisk/p/8809922.html

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。