-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathI.c
More file actions
41 lines (36 loc) · 697 Bytes
/
I.c
File metadata and controls
41 lines (36 loc) · 697 Bytes
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
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
void swap(char *x, char *y)
{
char temp;
temp = *x;
*x = *y;
*y = temp;
}
/* Function to print permutations of string
This function takes three parameters:
1. String
2. Starting index of the string
3. Ending index of the string. */
void permute(char *a, int l, int r)
{
int i;
if (l == r){
printf("%s\n", a);
}
else
{
for (i = l; i <= r; i++)
{
swap((a+l), (a+i));
permute(a, l+1, r);
swap((a+l), (a+i)); //backtrack
}
}
}
int main(){
char s[1000];
scanf("%s",s);
permute(s,0,strlen(s)-1);
}