gpt4 book ai didi

c++ - 如何根据要排序的 vector 中的 vector 对结构 vector 进行排序?

转载 作者:太空狗 更新时间:2023-10-29 19:46:14 26 4
gpt4 key购买 nike

根据结构 vector 中所有结构的每个 vector 中的第一个单词按字母顺序对结构 vector 进行排序的最佳方法是什么?

struct sentence{
vector<string> words;
};

vector<sentence> allSentences;

也就是说,如何根据words[0]对所有句子进行排序?


编辑:我使用了以下解决方案:

bool cmp(const sentence& lhs, const sentence & rhs)
{
return lhs.words[0] < rhs.words[0];
}

std::sort(allSentences.begin(), allSentences.end(), cmp);

最佳答案

提供合适的比较二进制函数并将其传递给 std::sort。例如

bool cmp(const sentence& lhs, const sentence & rhs)
{
return lhs.words[0] < rhs.words[0];
}

然后

std::sort(allSentences.begin(), allSentences.end(), cmp);

或者,在 C++11 中,您可以使用 lambda 匿名函数

std::sort(allSentences.begin(), allSentences.end(), 
[](const sentence& lhs, const sentence & rhs) {
return lhs.words[0] < rhs.words[0];}
);

关于c++ - 如何根据要排序的 vector 中的 vector<string> 对结构 vector 进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15640202/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com