-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpermutations.cpp
90 lines (83 loc) · 2.22 KB
/
permutations.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#pragma GCC optimize("Ofast")
#include <algorithm>
#include <bitset>
#include <deque>
#include <iostream>
#include <iterator>
#include <string>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <vector>
#include <unordered_map>
#include <unordered_set>
using namespace std;
void abhisheknaiidu()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
// void permutationHelper(vector<int> arr, vector<int> currentPermutaion, vector<vector<int>> &permutations) {
// if(arr.size() == 0) permutations.push_back(currentPermutaion);
// for(int i=0 ; i<arr.size(); i++) {
// vector<int> newArr;
// newArr.insert(newArr.end(), arr.begin(), arr.begin() + i);
// cout << "newArr : ";
// for(auto x: newArr) {
// cout << x << " ";
// }
// cout << endl;
// newArr.insert(newArr.end(), arr.begin()+ i + 1, arr.end());
// for(auto x: newArr) {
// cout << x << " ";
// }
// cout << endl;
// vector<int> newPermutation = currentPermutaion;
// newPermutation.push_back(arr[i]);
// cout << "newPermutation : ";
// for(auto x: newPermutation) {
// cout << x << " ";
// }
// cout << endl;
// permutationHelper(newArr, newPermutation, permutations);
// }
// }
void solve(vector<int> arr, vector<int> currentPermutation, vector<vector<int>> &permutations) {
if(currentPermutation.size() == arr.size()) {
permutations.push_back(currentPermutation);
}
for(int i=0; i<arr.size(); i++) {
if(find(currentPermutation.begin(), currentPermutation.end(), arr[i]) != currentPermutation.end())
continue;
currentPermutation.push_back(arr[i]);
for(auto x: currentPermutation) {
cout << x << " ";
}
cout << endl;
solve(arr, currentPermutation, permutations);
currentPermutation.pop_back();
cout << "Backtrack: ";
for(auto x: currentPermutation) {
cout << x << " ";
}
cout << endl;
}
}
int main(int argc, char* argv[]) {
abhisheknaiidu();
vector <int> arr{1,2,3};
vector<vector<int>> permutations;
int n = arr.size();
solve(arr, {}, permutations);
for(auto x: permutations) {
for(auto per: x) {
cout << per << " ";
}
cout << endl;
}
return 0;
}