在 C++ 中按字母顺序对字符串排序
本文将演示如何在 C++ 中按字母顺序对字符串排序的多种方法。
使用 std::sort
算法在 C++ 中按字母顺序对字符串进行排序
std::sort 是 STL 算法库的一部分,它为基于范围的结构实现了通用的排序方法。该函数通常使用 operator<
对给定序列进行排序;因此,可以使用此默认行为按字母顺序对字符串对象进行排序。std::sort
只接受范围说明符-第一个和最后一个元素迭代器。请注意,不能保证保留相等元素的顺序。
在下面的示例中,我们演示了基本方案,其中对字符串的向量进行了排序并打印到了 cout
流中。
#include <iostream>
#include <string>
#include <vector>
using std::cout; using std::sort;
using std::vector; using std::string;
using std::endl;
int main() {
vector<string> arr = { "raid", "implementation", "states", "all",
"the", "requirements", "parameter", "a",
"and", "or", "execution", "participate" };
for (const auto &item : arr) {
cout << item << "; ";
}
cout << endl;
sort(arr.begin(), arr.end());
for (const auto &item : arr) {
cout << item << "; ";
}
cout << endl;
exit(EXIT_SUCCESS);
}
输出:
raid; implementation; states; all; the; requirements; parameter; a; and; or; execution; participate;
a; all; and; execution; implementation; or; parameter; participate; raid; requirements; states; the;
另外,我们可以在 std::sort
方法中使用可选的第三个参数来指定确切的比较函数。在这种情况下,我们重新实现了前面的代码示例,以比较字符串中的最后一个字母并对其进行相应的排序。注意比较函数应该有两个参数,并返回一个 bool
值。下一个示例使用 lambda 表达式作为比较函数,并利用 back
内置函数检索字符串的最后一个字母。
#include <iostream>
#include <string>
#include <vector>
using std::cout; using std::sort;
using std::vector; using std::string;
using std::endl;
int main() {
vector<string> arr = { "raid", "implementation", "states", "all",
"the", "requirements", "parameter", "a",
"and", "or", "execution", "participate" };
for (const auto &item : arr) {
cout << item << "; ";
}
cout << endl;
sort(arr.begin(), arr.end(),
[] (string &s1, string &s2) { return s1.back() < s2.back(); });
for (const auto &item : arr) {
cout << item << "; ";
}
cout << endl;
exit(EXIT_SUCCESS);
}
输出:
raid; implementation; states; all; the; requirements; parameter; a; and; or; execution; participate;
a; raid; and; the; participate; all; implementation; execution; parameter; or; states; requirements;
使用 std::sort
算法在 C++ 中按长度对字符串排序
对字符串向量进行排序的另一种有用情况是按其长度排序。我们将使用与前面的示例代码相同的 lambda 函数结构,只是将 back
方法更改为 size
。不过请注意,该比较函数一定不能修改传递给它的对象。
#include <iostream>
#include <string>
#include <vector>
using std::cout; using std::sort;
using std::vector; using std::string;
using std::endl;
int main() {
vector<string> arr = { "raid", "implementation", "states", "all",
"the", "requirements", "parameter", "a",
"and", "or", "execution", "participate" };
for (const auto &item : arr) {
cout << item << "; ";
}
cout << endl;
sort(arr.begin(), arr.end(),
[] (string &s1, string &s2) { return s1.size() < s2.size(); });
for (const auto &item : arr) {
cout << item << "; ";
}
cout << endl;
exit(EXIT_SUCCESS);
}
输出:
raid; implementation; states; all; the; requirements; parameter; a; and; or; execution; participate;
a; or; all; the; and; raid; states; parameter; execution; participate; requirements; implementation;
相关文章
在 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 数组