华师一附中OI组

标题: 子集枚举 [打印本页]

作者: admin    时间: 2020-3-26 10:52
标题: 子集枚举
用二进制位去枚举的技巧
  1. #include <iostream>
  2. using namespace std;
  3. int x=7;
  4. int main()
  5. {
  6.         for(int p=x; p; p=(p-1)&x) cout<<p<<' ';
  7.         return 0;
  8. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2