Last active
June 20, 2017 17:14
-
-
Save prabhakaran9397/36725994035b7d4e87efe7b3416bfd5c to your computer and use it in GitHub Desktop.
All possible combinations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
using namespace std; | |
void go(int offset, int k, vector<int> number, vector<int> temp, vector< vector<int> > &all) { | |
if (k == 0) { | |
all.push_back(temp); | |
return; | |
} | |
for (int i=offset; i<=number.size()-k; ++i) { | |
temp.push_back(number[i]); | |
go(i+1, k-1, number, temp, all); | |
temp.pop_back(); | |
} | |
} | |
vector< vector<int> > combination(int n) | |
{ | |
vector< vector<int> > all; | |
vector<int> number, temp; | |
for(int i=1; i<=n; ++i) | |
number.push_back(i); | |
for(int i=1; i<=n; ++i) | |
go(0, i, number, temp, all); | |
return all; | |
} | |
int main() { | |
vector< vector<int> > all = combination(4); | |
for(int i=0; i<all.size(); ++i) { | |
for(int j=0; j<all[i].size(); ++j) { | |
cout << all[i][j] << " "; | |
} | |
cout << endl; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment