-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpermutations_of_strings_arsho.c
70 lines (67 loc) · 1.27 KB
/
permutations_of_strings_arsho.c
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
/*
Title : Permutations of Strings
Category : Functions
Author : arsho
Created : 27 May 2018
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void swap(char **s, int k, int l){
char *temp = s[k];
s[k] = s[l];
s[l] = temp;
}
int next_permutation(int n, char **s)
{
/**
* Return 0 when there is no next permutation and 1 otherwise
* Modify array s to its next permutation
* Ref: https://en.wikipedia.org/wiki/Permutation#Generation_in_lexicographic_order
*/
int i, j, k, l;
k=-1;
for(i=0;i<n-1;i++){
for(j=i+1;j<n;j++){
if(strcmp(s[i], s[j])<0){
k=i;
}
}
}
if(k==-1)
return 0;
for(i=k+1;i<n;i++){
if(strcmp(s[i], s[k])>0){
l=i;
}
}
swap(s, l, k);
int end = n-1;
for(i=k+1;i<n;i++){
if(end<=i)break;
swap(s, i, end);
end--;
}
return 1;
}
int main()
{
char **s;
int n;
scanf("%d", &n);
s = calloc(n, sizeof(char*));
for (int i = 0; i < n; i++)
{
s[i] = calloc(11, sizeof(char));
scanf("%s", s[i]);
}
do
{
for (int i = 0; i < n; i++)
printf("%s%c", s[i], i == n - 1 ? '\n' : ' ');
} while (next_permutation(n, s));
for (int i = 0; i < n; i++)
free(s[i]);
free(s);
return 0;
}