-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathStringPermutations.java
54 lines (46 loc) · 1.31 KB
/
StringPermutations.java
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
/**
* @date 03/01/19
* @author spattk (Sitesh Pattanaik)
*/
import java.util.*;
class StringPermutations {
static void printArr(char[] arr){
for(char x : arr){
System.out.print(x);
}
}
static void printAllPermutationsUtil(String str, boolean[] visited, char[] res, int index){
if(index==str.length())
{
printArr(res);
System.out.println();
return;
}
for(int i=0;i<str.length();i++)
{
if(visited[i]){
continue;
}
res[index] = str.charAt(i);
visited[i] = true;
printAllPermutationsUtil(str, visited, res, index+1);
visited[i] = false;
}
}
static void printAllPermutations(String str){
int n = str.length();
boolean[] visited = new boolean[n];
Arrays.fill(visited, false);
char[] res = new char[n];
printAllPermutationsUtil(str, visited, res, 0);
}
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.next();
char[] temp = str.toCharArray();
Arrays.sort(temp);
str = new String(temp);
printAllPermutations(str);
System.out.println();
}
}