打印给定字符串的所有排列的 C++ 程序
排列也称为“排列编号”或“顺序”,是将有序列表 S 的元素重新排列为与 S 本身一一对应的关系。一个长度为 n 的字符串有 n!排列。
来源:Mathword(http://mathworld.wolfram.com/Permutation.html)
下面是字符串ABC 的排列。
ABC ACB BAC BCA CBA CAB
这是一个用作回溯基础的解决方案。
C++
// C++ program to print all permutations
// with duplicates allowed
#include
using namespace std;
// 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(string a, int l, int r)
{
// Base case
if (l == r)
cout<
C++
// C++ program to implement
// the above approach
#include
#include
using namespace std;
void permute(string s,
string answer)
{
if(s.length() == 0)
{
cout << answer << " ";
return;
}
for(int i = 0;
i < s.length(); i++)
{
char ch = s[i];
string left_substr = s.substr(0, i);
string right_substr = s.substr(i + 1);
string rest = left_substr + right_substr;
permute(rest , answer+ch);
}
}
// Driver code
int main()
{
string s;
string answer = "";
cout << "Enter the string : ";
cin >> s;
cout <<
"All possible strings are : ";
permute(s, answer);
return 0;
}
输出:
ABC
ACB
BAC
BCA
CBA
CAB
算法范式:回溯
时间复杂度: O(n*n!) 注意有 n!排列,它需要 O(n) 时间来打印排列。
辅助空间: O(r – l)
注意:如果输入字符串中有重复字符,上述解决方案会打印重复排列。请参阅以下链接以获取即使输入中有重复项也仅打印不同排列的解决方案。
打印具有重复项的给定字符串的所有不同排列。
使用 STL 对给定字符串进行排列
另一种方法:
C++
// C++ program to implement
// the above approach
#include
#include
using namespace std;
void permute(string s,
string answer)
{
if(s.length() == 0)
{
cout << answer << " ";
return;
}
for(int i = 0;
i < s.length(); i++)
{
char ch = s[i];
string left_substr = s.substr(0, i);
string right_substr = s.substr(i + 1);
string rest = left_substr + right_substr;
permute(rest , answer+ch);
}
}
// Driver code
int main()
{
string s;
string answer = "";
cout << "Enter the string : ";
cin >> s;
cout <<
"All possible strings are : ";
permute(s, answer);
return 0;
}
输出:
Enter the string : abc
All possible strings are : abc acb bac bca cab cba
时间复杂度: O(n*n!) 时间复杂度与上述方法相同,即有 n!排列,它需要 O(n) 时间来打印排列。
辅助空间: O(|s|)
有关详细信息,请参阅有关编写程序以打印给定字符串的所有排列的完整文章!