码迷,mamicode.com
首页 > 其他好文 > 详细

求n个数的组合的方法

时间:2015-08-17 16:54:51      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:

求n个数的组合,利用二进制的0和1表示使用与不使用的两种状态可以拿来存储每一位的使用情况并且保证不会重复。代码如下:

 1 #include <iostream>
 2 #include <fstream>
 3 
 4 using namespace std;
 5 
 6 int main() {
 7     int arr[10];
 8     int n;
 9     int cnt = 0;
10     ofstream fs("a.txt");
11     cin >> n;
12     for(int i = 0; i < n; i++) {
13         cin >> arr[i];
14     }
15     int ss = 1 << n;    //example: n = 4 now ss = (10000)2
16     for(int i = 1; i < ss; i++) {    // i(max) = 1111, means select all numbers of arr.
17         for(int j = 0; j < n; j++) {
18             if(i & (1 << j)) {
19                 cout << arr[j] << " ";
20             }
21         }
22         cnt++;
23         cout << endl;
24     }
25     cout << cnt << endl;
26     return 0;
27 }

 

求n个数的组合的方法

标签:

原文地址:http://www.cnblogs.com/vincentX/p/4736764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!