华师一附中OI组
标题:
子集枚举
[打印本页]
作者:
admin
时间:
2020-3-26 10:52
标题:
子集枚举
用二进制位去枚举的技巧
#include <iostream>
using namespace std;
int x=7;
int main()
{
for(int p=x; p; p=(p-1)&x) cout<<p<<' ';
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2