迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > C++ >

在 C++ 中对向量进行排序

作者:迹忆客 最近更新:2023/03/23 浏览次数:

本文将演示如何在 C++ 中对向量进行排序的多种方法。

使用 std::sort 算法对矢量元素进行排序

std::sort 函数实现了一种通用算法来处理不同的对象,并使用作为第三个参数传递的比较器函数对范围内的给定元素进行排序。请注意,可以在不使用第三个参数的情况下使用该函数,在这种情况下,可以使用 operator< 对元素进行排序。以下示例代码演示了这种情况,其中元素的类型为字符串,具有成员 operator<,并且可以使用默认比较器进行排序。

#include <iostream>
#include <vector>
#include <algorithm>

using std::cout; using std::cin;
using std::endl; using std::vector;
using std::string; using std::sort;

template<typename T>
void printVector(vector<T> &vec)
{
    for (const auto &item : vec) {
        cout << item << ", ";
    }
    cout << endl;
}

int main() {
    vector<string> vec1 = { "highway",
                            "song",
                            "world",
                            "death",
                            "mom",
                            "historian",
                            "menu",
                            "woman" };
    printVector(vec1);
    sort(vec1.begin(), vec1.end());
    printVector(vec1);

    return EXIT_SUCCESS;
}

输出:

highway, song, world, death, mom, historian, menu, woman,
death, highway, historian, menu, mom, song, woman, world,

使用带有 Lambda 表达式的 std::sort 函数对结构体向量进行排序

或者,可以使用 lambda 表达式构造自定义比较器函数对象,以对用户定义的结构进行排序。在这种情况下,我们有一个带有不同数据成员的 struct cpu,并且通过传递分别比较 valueproperty1 成员的函数对象来构造两个 sort 调用。

#include <iostream>
#include <vector>
#include <algorithm>

using std::cout; using std::cin;
using std::endl; using std::vector;
using std::string; using std::sort;

struct cpu {
    string property1;
    string property2;
    string property3;
    int value;
} typedef cpu;

void printVector(vector<cpu> &vec)
{
    for (const auto &item : vec) {
        cout << item.property1 << " : "
             << item.property2 << " : "
             << item.property3 << " : "
             << item.value << endl;
    }
    cout << endl;
}

int main() {
    vector<cpu> vec3 = { {"WMP", "GR", "33", 2023},
                         {"TPS", "US", "31",  2020},
                         {"EOM", "GB", "36", 2021},
                         {"AAW", "GE", "39", 2024} };

    printVector(vec3);
    sort(vec3.begin(), vec3.end(), [] (cpu &x, cpu &y) { return x.value < y.value; });
    sort(vec3.begin(), vec3.end(), [] (cpu &x, cpu &y) { return x.property1 < y.property1; });
    printVector(vec3);

    return EXIT_SUCCESS;
}

使用 std::sort 函数与自定义函数来排序结构体向量

请注意,以前的方法在较大的代码库中很难使用,并且如果比较函数很复杂,可能会使代码变得相当庞大。另一个解决方案是将比较函数实现为结构体成员,并将它们声明为 static,以通过范围运算符进行访问。同样,这些函数必须返回一个 bool 值,并且只有两个参数。

#include <iostream>
#include <vector>
#include <algorithm>

using std::cout; using std::cin;
using std::endl; using std::vector;
using std::string; using std::sort;

struct cpu {
    string property1;
    string property2;
    string property3;
    int value;

public:
    static bool compareCpusByValue(cpu &a, cpu &b) {
        return a.value < b.value;
    }

    static bool compareCpusByProperty1(cpu &a, cpu &b) {
        return a.property1 < b.property1;
    }
} typedef cpu;

void printVector(vector<cpu> &vec)
{
    for (const auto &item : vec) {
        cout << item.property1 << " : "
             << item.property2 << " : "
             << item.property3 << " : "
             << item.value << endl;
    }
    cout << endl;
}

int main() {
    vector<cpu> vec3 = { {"WMP", "GR", "33", 2023},
                         {"TPS", "US", "31",  2020},
                         {"EOM", "GB", "36", 2021},
                         {"AAW", "GE", "39", 2024} };

    printVector(vec3);
    sort(vec3.begin(), vec3.end(), cpu::compareCpusByProperty1);
    sort(vec3.begin(), vec3.end(), cpu::compareCpusByValue);
    printVector(vec3);

    return EXIT_SUCCESS;
}

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 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++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便