在 C++ 中打印字符串的所有排列
本文将介绍如何在 C++ 中打印给定字符串的所有排列。
使用 std::next_permutation
在 C++ 中打印字符串的所有排列
std:next_permutation
算法修改给定的范围,以便元素的排列按字典顺序升序排列,如果存在这样的排列,则返回一个真正的布尔值。如果字符串字符按降序排序,则该函数可以对 std::string
对象进行操作以生成其排列。我们可以使用 std::sort
算法和 std::greater
函数对象对字符串进行排序,然后调用 next_permutation
直到它返回 false。后者可以使用 do...while
循环实现,该循环将 next_permutation
语句作为条件表达式,并在每个循环中将字符串打印到 cout
流。
#include <iostream>
#include <iterator>
#include <algorithm>
#include <limits>
using std::cout; using std::endl;
using std::string; using std::cin;
void PrintStringPermutations(string &str)
{
std::sort(str.begin(), str.end(), std::greater<>());
do {
cout << str << endl;
} while (std::next_permutation(str.begin(), str.end()));
}
int main() {
string input;
cout << "Enter string to print permutations: ";
cin >> input;
PrintStringPermutations(input);
return EXIT_SUCCESS;
}
输出:
Enter string to print permutations: nel
nle
nel
lne
len
enl
eln
使用 std::prev_permutation
在 C++ 中打印字符串的所有排列
或者,我们可以利用 STL 中的另一种算法 - std::prev_permutation
,该算法以相同的字典顺序生成给定范围的新排列,但在提供序列时存储先前的排列。除了在 while
循环条件中调用 prev_permutation
函数之外,最终的解决方案仍然与前面的示例类似。
#include <iostream>
#include <iterator>
#include <algorithm>
#include <limits>
using std::cout; using std::endl;
using std::string; using std::cin;
void PrintStringPermutations(string &str)
{
std::sort(str.begin(), str.end(), std::greater<>());
do {
cout << str << endl;
} while (std::prev_permutation(str.begin(), str.end()));
}
int main() {
string input;
cout << "Enter string to print permutations: ";
cin >> input;
PrintStringPermutations(input);
return EXIT_SUCCESS;
}
输出:
Enter string to print permutations: nel
nle
nel
lne
len
enl
eln
此外,可以通过实现用户字符串验证功能来确保更健壮的代码,该功能将打印输入提示,直到用户提供有效字符串。请注意,所有列出的解决方案将仅解析来自命令行输入的单个字符串参数,并且不会读取多字字符串。
#include <iostream>
#include <iterator>
#include <algorithm>
#include <limits>
using std::cout; using std::endl;
using std::string; using std::cin;
void PrintStringPermutations(string &str)
{
std::sort(str.begin(), str.end(), std::greater<>());
do {
cout << str << endl;
} while (std::prev_permutation(str.begin(), str.end()));
}
template<typename T>
T &validateInput(T &val)
{
while (true) {
cout << "Enter string to print permutations: ";
if (cin >> val) {
break;
} else {
if (cin.eof())
exit(EXIT_SUCCESS);
cout << "Enter string to print permutations\n";
cin.clear();
cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
}
return val;
}
int main() {
string input;
validateInput(input);
PrintStringPermutations(input);
return EXIT_SUCCESS;
}
输出:
Enter string to print permutations: nel
nle
nel
lne
len
enl
eln
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组