This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
import java.lang.*; | |
import java.io.*; | |
public class StringPermutations { | |
private char[] arrA; | |
public void permutation(char[] arrA, int left, int size) { | |
int x; | |
if (left == size) { | |
for (int i = 0; i < arrA.length; i++) { | |
System.out.print(arrA[i]); | |
} | |
System.out.print(" "); | |
} else { | |
for (x = left; x < size; x++) { | |
swap(arrA, left, x); | |
permutation(arrA, left + 1, size); | |
swap(arrA, left, x); | |
} | |
} | |
} | |
public void swap(char[] arrA, int i, int j) { | |
char temp = arrA[i]; | |
arrA[i] = arrA[j]; | |
arrA[j] = temp; | |
} | |
public static void main(String[] args) throws java.lang.Exception { | |
// your code goes here | |
String s = "abc"; | |
char[] arrCh = s.toCharArray(); | |
StringPermutations i = new StringPermutations(); | |
i.permutation(arrCh, 0, arrCh.length); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment