VOOZH about

URL: https://www.geeksforgeeks.org/dsa/cpp-program-to-print-all-permutations-of-a-given-string/

⇱ C++ Program To Print All Permutations Of A Given String - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C++ Program To Print All Permutations Of A Given String

Last Updated : 23 Jul, 2025

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(https://mathworld.wolfram.com/Permutation.html)

Below are the permutations of string ABC. 
ABC ACB BAC BCA CBA CAB

Here is a solution that is used as a basis in backtracking.

👁 NewPermutation

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:

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|)

Please refer complete article on Write a program to print all permutations of a given string for more details!
Comment