gpt4 book ai didi

c++ - 如何使用 STL 对包含相对条目的两个 vector 进行排序?

转载 作者:搜寻专家 更新时间:2023-10-31 01:43:30 26 4
gpt4 key购买 nike

我的函数有两个 vector 引用作为输入。他们的条目是相关的。为清楚起见,我们假设它们是:

vector<string> firstname = { "Bjarne",     "Alexander",  "Dennis",   "James",   "James"   };
vector<string> lastname = { "Stroustrup", "Stepanov", "Ritchie", "Coplien", "Gosling" };

我想使用 STL 对它们进行排序,找到唯一的条目,然后删除其余条目。

我知道我可以将它们复制到成对的中间 vector v,然后完成工作

void my_func (vector<string> *firstname, vector<string> *lastname)
{
vector<pair<string,string>> v;
for ( all i in firstname )
v.push_back( (*firstname)[i], (*lastname)[i] ); // copy all entries

sort(v.begin(), v.end()); // clear duplicates
v.erase(unique(v.begin(), v.end()), v.end());

for ( all i in v ) {
// copy back to firstname and lastname
}
}

但我想知道我是否可以使用 STL 来执行此操作而无需创建整个临时 vector v 或没有其他类似大小的中间 vector ,因为我的输入数据有大量的条目。

看起来我可以将一个临时比较器对象传递给 std::sort

struct ComparePersons
{
vector<string> *first_names;
vector<string> *last_names;

bool operator() (const string &a, const string &b)
{
// get indexes of names
int index_a = std::distance( first_names.begin(), &a );
int index_b = std::distance( first_names.begin(), &b );

// create temporary persons
pair<string, string> person_a (
(*first_names)[index_a],
(*last_names)[index_a] );

pair<string, string> person_b (
(*first_names)[index_b],
(*last_names)[index_b] );

// compare persons
return person_a < person_b;
}
};

sort( first_names.begin(), first_names.end(),
ComparePersons(&first_names, &last_names) );

但我想不出如何使 sort 交换两个 vector 中的条目。

关于如何使用 STL 处理这些情况有什么想法吗?

最佳答案

STL 方法是使用 map ,但为了拼图,让我们尝试不使用拷贝。

你所需要的就是以某种方式“连接”这两个 vector

一个不错的方法是根据“主要” vector 对索引 vector 进行排序,然后根据这些索引重新排列 vector 。

#include <iostream>
#include <vector>
#include <iterator>
#include <string>
#include <algorithm>
#include <numeric>

using namespace std;

// ------------------------------------------------------
template<typename It>
void replace(
It beg,
It end,
typename iterator_traits<It>::value_type const& oldval,
typename iterator_traits<It>::value_type const& newval)
{
while ((beg = find(beg, end, oldval)) != end)
{
*beg = newval;
++beg;
}
}
// ------------------------------------------------------

// ------------------------------------------------------
template<typename T>
void rearrange_vector(vector<int> nInd, vector<T> &v)
{
size_t indx;
for (size_t ie(v.size()), i(0); i < ie; ++i)
{
auto it = find(nInd.begin(), nInd.end(), i);
if (nInd.end() != it)
{
indx = distance(nInd.begin(), it);
swap(v.at(i), v.at(indx));
replace(nInd.begin(), nInd.end(), indx, i);
}
}
}
// ------------------------------------------------------


int main()
{
// 1. Problem space
vector<string> firstnames = {
"Bjarne", "Alexander", "Dennis", "James", "James" };
vector<string> lastnames = {
"Stroustrup", "Stepanov", "Ritchie", "Coplien", "Gosling" };

// 2. vector of indices - sorted according to the order of firstnames
vector<int> indices(firstnames.size());
iota(indices.begin(), indices.end(), 0);

sort(indices.begin(), indices.end(), [&](int i1, int i2){
return firstnames[i1] < firstnames[i2];
});

// 3. rearrangement according to the sorted indices
rearrange_vector(indices, firstnames);
rearrange_vector(indices, lastnames);

// 4. print results
for (size_t i(0), ie(firstnames.size()); i < ie; ++i)
cout << firstnames[i] << " " << lastnames[i] << endl;

return 0;
}

Demo

当然,这样做的唯一优势是对于巨大的 vector ,您可以并行执行步骤 (3)。此解决方案还可以扩展到任意数量的“相关” vector 排序。

您只需为索引排序付费,而后续的重排只需要线性时间。

关于c++ - 如何使用 STL 对包含相对条目的两个 vector 进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25085015/

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