C ++,std :: transform按索引替换项目

时间:2012-01-27 23:52:36

标签: c++ vector transform replace indices

有2个未分类的int v1和v2向量,其中v1包含v2的子集

v1: 8 12 4 17
v2: 6 4 14 17 9 0 5 12 8 

有没有办法,如何用v2中的位置索引替换v1的项目?

v1: 8 7 1 3

使用2代表循环编写这样的算法是没有问题的......

但有没有使用std :: transform的解决方案?

3 个答案:

答案 0 :(得分:5)

std::transform与调用std::find的函数对象结合使用:

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

struct find_functor
{
  std::vector<int> &haystack;

  find_functor(std::vector<int> &haystack)
    : haystack(haystack)
  {}

  int operator()(int needle)
  {
    return std::find(haystack.begin(), haystack.end(), needle) - haystack.begin();
  }
};

int main()
{
  std::vector<int> v1 = {8, 12,  4, 17};
  std::vector<int> v2 = {6,  4, 14, 17, 9, 0, 5, 12, 8};

  // in c++11:
  std::transform(v1.begin(), v1.end(), v1.begin(), [&v2](int x){
    return std::find(v2.begin(), v2.end(), x) - v2.begin();
  });

  // in c++03:
  std::transform(v1.begin(), v1.end(), v1.begin(), find_functor(v2));

  std::cout << "v1: ";
  std::copy(v1.begin(), v1.end(), std::ostream_iterator<int>(std::cout, " "));
  std::cout << std::endl;

  return 0;
}

输出:

$ g++ -std=c++0x test.cpp
$ ./a.out 
v1: 8 7 1 3 

答案 1 :(得分:0)

您可以在转化中使用std::find()

std::transform(v1.begin(), v1.end(), v1.begin(), [&](int v)->int {
    return std::find(v2.begin(), v2.end(), v) - v2.begin());
});

答案 2 :(得分:0)

std::transform采用一个类似函数的对象。因此,您可以创建一个有效执行此操作的仿函数类,使用第二个向量构造它,然后将该仿函数应用于第一个向量。

template <typename T>
class IndexSeeker{
    private:
        map<T, int> indexes;
    public:
        IndexSeeker(vector<T> source){
            for(int k = 0; k < t.size(); ++k){
                indexes[source[k]] = k;
            }
        }

        int operator()(const T& locateme){
            if(indexes.find(T) != indexes.end()){
                return indexes[T];
            }
            return -1;
        }
}

通过将整个第二个列表缓存到地图中,找到索引是有效的,而不需要线性搜索。这要求类型T可以排序(因此可以映射)。如果T不可排序,则需要一种效率较低的方法,需要进行强力搜索。