集合遍历(子集遍历)--二进制

Posted TFLSNOI

tags:

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

 集合的概念

写法一:

 

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int u;
 4 int n, a[10];
 5 int main()
 6 {
 7     cin>>n;
 8     for(int i=0; i<n; i++)
 9         cin>>a[i];
10         
11     cout<<"原集合为:{";
12     for(int i=0; i<n; i++)
13         cout<<a[i]<<",";
14     cout<<"}"<<endl;
15     
16     //将集合转二进制 
17     for(int i=0; i<4; i++){
18         u+=(1<<a[i]);
19     }
20     
21     cout<<"该集合的非空子集为"<<endl;
22     // 遍历 u 的非空子集
23     for(int s = u; s; s = (s - 1) & u) {
24       // s 是 u 的一个非空子集
25         int t=s;
26         cout<<"{";
27         for(int i=0; i<=8; i++){
28             if(t & (1<<i))
29                 cout<<i<<",";
30         }
31         cout<<"}";
32         cout<<endl;
33     }
34 
35     return 0;
36 }

 

写法二:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int a[10];
 4 void print_subset(int n)
 5 {
 6     for(int i=0; i<(1<<n); i++){
 7         for(int j=0; j<n; j++)
 8             if(i&(1<<j))
 9                 cout<<a[j]<<" ";
10         cout<<endl;
11     }
12 }
13 int main()
14 {
15     int n;
16     cin>>n;
17     for(int i=0; i<n; i++)
18         cin>>a[i];
19     print_subset(n);
20     return 0;
21  }

时间复杂度:n*2n

 

 

 

 

以上是关于集合遍历(子集遍历)--二进制的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 腾讯精选50题--子集

如何避免循环遍历 pandas 中的分类变量以查看/操作数据帧切片/子集

二进制枚举子集技巧

java里set list 为啥能遍历集合

图的概念存储及遍历

循环遍历 R 中列名的特定子集