变量x
是n
整数的向量,我想按升序对向量进行排序。但是,由于这个问题范围之外的原因,我想要保持不变。因此,我想创建另一个x
索引向量,而不是实际排序n
的内容,其中每个索引引用x
中的相应值,如果x
已被分类。
例如:
std::vector<int> x = {15, 3, 0, 20};
std::vector<int> y;
// Put the sorted indices of x into the vector y
for (int i = 0; i < 4; i++)
{
std::cout << y[i];
}
应该给出输出:
2
1
0
3
对应x中的值:
0
3
15
20
我可以想到很多及时实现这一点的方法,但我想知道STL是否有内置功能可以为我有效地执行此操作?
答案 0 :(得分:23)
1)创建y
作为索引的向量(整数范围)
2)使用比较器对此范围进行排序,该比较器从x
返回索引元素
使用标准库,提供:
#include <iostream>
#include <vector>
#include <algorithm>
int main() {
std::vector<int> x = {15, 3, 0, 20};
std::vector<int> y;
std::vector<int> y(x.size());
std::size_t n(0);
std::generate(std::begin(y), std::end(y), [&]{ return n++; });
std::sort( std::begin(y),
std::end(y),
[&](int i1, int i2) { return x[i1] < x[i2]; } );
for (auto v : y)
std::cout << v << ' ';
return 0;
}
答案 1 :(得分:12)
使用y
的所有索引填充x
,然后在std::sort
上使用y
,但提供比较x
中相应元素的比较器:
std::vector<int> y(x.size());
std::iota(y.begin(), y.end(), 0);
auto comparator = [&x](int a, int b){ return x[a] < x[b]; };
std::sort(y.begin(), y.end(), comparator);
答案 2 :(得分:4)
您可以提供自己的比较器来检查目标向量的值,同时对索引向量进行排序,如下所示:
#include <vector>
#include <iostream>
#include <algorithm>
struct IdxCompare
{
const std::vector<int>& target;
IdxCompare(const std::vector<int>& target): target(target) {}
bool operator()(int a, int b) const { return target[a] < target[b]; }
};
int main()
{
std::vector<int> x = {15, 3, 0, 20};
std::vector<int> y;
// initialize indexes
for(size_t i = 0; i < x.size(); ++i)
y.push_back(i);
std::sort(y.begin(), y.end(), IdxCompare(x));
std::cout << "\nvector x: " << '\n';
for(size_t i = 0; i < x.size(); ++i)
std::cout << x[i] << '\n';
std::cout << "\nvector y: " << '\n';
for(size_t i = 0; i < x.size(); ++i)
std::cout << y[i] << '\n';
std::cout << "\nvector x through y: " << '\n';
for(size_t i = 0; i < x.size(); ++i)
std::cout << x[y[i]] << '\n';
}
<强>输出:强>
vector x:
15
3
0
20
vector y:
2
1
0
3
vector x through y:
0
3
15
20
答案 3 :(得分:1)
我们可以采取&#34;指&#34;直接接近并使用指向源向量中的值的数组。
#include <iostream>
#include <vector>
#include <algorithm>
int main(int argc, const char * argv[]) {
//a source vector, who's order shouldn't be changed
std::vector<int> values = {15, 4, 20, 25, 0, 19, -5};
//a vector of pointers to the values in the source vector
std::vector<int *> pointersToValues;
pointersToValues.reserve(values.size());
for(auto& value : values){
pointersToValues.push_back(&value);
}
//two comparators in form of lambda functions
auto descendingOrderSorter = [](int * i, int * j){
return *i > *j;
};
auto ascendingOrderSorter = [](int * i, int * j){
return *i < *j;
};
//examples of usage
std::cout<<"Sorting in a descending order"<<std::endl;
std::sort( pointersToValues.begin(), pointersToValues.end(), descendingOrderSorter);
for(int i = 0; i < pointersToValues.size(); ++i) {
std::cout << "index: " << i << ", value: " << *pointersToValues[i] << std::endl;
}
std::cout<<"Sorting in an ascending order"<<std::endl;
std::sort( pointersToValues.begin(), pointersToValues.end(), ascendingOrderSorter);
for(int i = 0; i < pointersToValues.size(); ++i) {
std::cout << "index: " << i << ", value: " << *pointersToValues[i] << std::endl;
}
return 0;
}
pointersToValues [i]会给你一个指向原始值的指针,* pointersToValues [i]会给你一个值。
答案 4 :(得分:0)
您可以对另一个列表进行排序,然后与未排序列表进行比较,然后在第3个列表中存储索引,即nlog(n) + n^2
或O(n^2)
注意: 这是伪代码
vector<int> x = {15, 3, 0, 20};
vector<int> y = sort(x);
vector<in> z;
for(int i = 0; y < y.size(); i++){
for(int j = 0; j < y.size(); j++){
if(y[i] == x[j]){
z.push_back(j);
}
}
}