-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathAllPermutationsOfString.cpp~
51 lines (51 loc) · 1.02 KB
/
AllPermutationsOfString.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
#include <bits/stdc++.h>
using namespace std;
int cnt=0;
void allPermutations(std::vector<int> &a,int k,int n){
//int count = 0;
if(k == n-1){
for(int i=0;i<n;i++) cout << a[i];
cout << endl ;
}
else {
for(int i=k;i<n;i++){
cnt++;
swap(a[i],a[k]);
allPermutations(a,k+1,n);
swap(a[i],a[k]);
}
}
}
void allPermutationsOfString(string str,int k){
int n = str.length() ;
if(k == n-1){
cout << str << endl ;
}
else {
for(int i=k;i<n;i++){
swap(str[i],str[k]);
allPermutationsOfString(str,k+1);
swap(str[i],str[k]);
}
}
}
int main(int argc, char const *argv[])
{
int n;
string str;
cout << "Enter the number of elements ";
cin >> n ;
std::vector<int> v(n);
for (int i = 0; i < n; ++i)
{
cout << "Enter the element " ;
cin >> v[i] ;
}
cout << "Count " << cnt << endl;
allPermutations(v,0,n);
cout << "Enter a String " ;
cin >> str ;
cout << "Permutations of String " << endl ;
allPermutationsOfString(str,0);
return 0;
}