Java Program to print all permutations of a given string Last Updated : 10 Dec, 2021 Comments Improve Suggest changes Like Article Like Report A permutation also called an "arrangement number" or "order," is a rearrangement of the elements of an ordered list S into a one-to-one correspondence with S itself. A string of length n has n! permutation. Source: Mathword(http://mathworld.wolfram.com/Permutation.html) Below are the permutations of string ABC. ABC ACB BAC BCA CBA CAB Recommended: Please solve it on “PRACTICE ” first, before moving on to the solution. Here is a solution that is used as a basis in backtracking. Java // Java program to print all // permutations of a given string. public class Permutation { public static void main(String[] args) { String str = "ABC"; int n = str.length(); Permutation permutation = new Permutation(); permutation.permute(str, 0, n-1); } /* Permutation function @param str string to calculate permutation for @param l starting index @param r end index */ private void permute(String str, int l, int r) { if (l == r) System.out.println(str); else { for (int i = l; i <= r; i++) { str = swap(str,l,i); permute(str, l+1, r); str = swap(str,l,i); } } } /* Swap Characters at position @param a string value @param i position 1 @param j position 2 @return swapped string */ public String swap(String a, int i, int j) { char temp; char[] charArray = a.toCharArray(); temp = charArray[i] ; charArray[i] = charArray[j]; charArray[j] = temp; return String.valueOf(charArray); } } // This code is contributed by Mihir Joshi Output: ABC ACB BAC BCA CBA CAB Algorithm Paradigm: Backtracking Time Complexity: O(n*n!) Note that there are n! permutations and it requires O(n) time to print a permutation. Auxiliary Space: O(r - l) Note: The above solution prints duplicate permutations if there are repeating characters in the input string. Please see the below link for a solution that prints only distinct permutations even if there are duplicates in input.Print all distinct permutations of a given string with duplicates. Permutations of a given string using STL Another approach: Java import java.util.*; // Java program to implement // the above approach class GFG{ static void permute(String s, String answer) { if (s.length() == 0) { System.out.print(answer + " "); return; } for(int i = 0 ;i < s.length(); i++) { char ch = s.charAt(i); String left_substr = s.substring(0, i); String right_substr = s.substring(i + 1); String rest = left_substr + right_substr; permute(rest, answer + ch); } } // Driver code public static void main(String args[]) { Scanner scan = new Scanner(System.in); String s; String answer=""; System.out.print( "Enter the string : "); s = scan.next(); System.out.print( "\nAll possible strings are : "); permute(s, answer); } } // This code is contributed by adityapande88 Output: Enter the string : abc All possible strings are : abc acb bac bca cab cba Time Complexity: O(n*n!) The time complexity is the same as the above approach, i.e. there are n! permutations and it requires O(n) time to print a permutation. Auxiliary Space: O(|s|) Comment More infoAdvertise with us Next Article Convert List of Characters to String in Java K kartik Follow Improve Article Tags : Java Practice Tags : Java Similar Reads Java Program for Anagram Substring Search (Or Search for all permutations) Given a text txt[0..n-1] and a pattern pat[0..m-1], write a function search(char pat[], char txt[]) that prints all occurrences of pat[] and its permutations (or anagrams) in txt[]. You may assume that n > m. Expected time complexity is O(n) Examples: 1) Input: txt[] = "BACDGABCDA" pat[] = "ABCD" 4 min read Convert List of Characters to String in Java Given a list of characters. In this article, we will write a Java program to convert the given list to a string. Example of List-to-String ConversionInput : list = {'g', 'e', 'e', 'k', 's'} Output : "geeks" Input : list = {'a', 'b', 'c'} Output : "abc" Strings - Strings in Java are objects that are 4 min read Convert List of Characters to String in Java Given a list of characters. In this article, we will write a Java program to convert the given list to a string. Example of List-to-String ConversionInput : list = {'g', 'e', 'e', 'k', 's'} Output : "geeks" Input : list = {'a', 'b', 'c'} Output : "abc" Strings - Strings in Java are objects that are 4 min read Implementing next_permutation() in Java with Examples Given an array or string, the task is to find the next lexicographically greater permutation of it in Java.Examples: Input: string = "gfg" Output: ggf Input: arr[] = {1, 2, 3} Output: {1, 3, 2} In C++, there is a specific function that saves us from a lot of code. Itâs in the header file #include 5 min read Implementing next_permutation() in Java with Examples Given an array or string, the task is to find the next lexicographically greater permutation of it in Java.Examples: Input: string = "gfg" Output: ggf Input: arr[] = {1, 2, 3} Output: {1, 3, 2} In C++, there is a specific function that saves us from a lot of code. Itâs in the header file #include 5 min read Sort a String in Java (2 different ways) The string class doesn't have any method that directly sorts a string, but we can sort a string by applying other methods one after another. The string is a sequence of characters. In java, objects of String are immutable which means a constant and cannot be changed once created. Creating a String T 6 min read Like