Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I have two stl vectors vect1, vect2 and I want to produce from them a map, so first element from vect1 will correspond to first element in vect2 and so on. How can I do that in the most simple way?

share|improve this question
1  
What do you want to happen when they have different sizes? – GManNickG Feb 9 '11 at 14:49

5 Answers

up vote 5 down vote accepted
std::vector<int> a, b;
// fill vectors here...
std::map<int, int> m;
assert(a.size() == b.size());
for (size_t i = 0; i < a.size(); ++i)
    m[a[i]] = b[i];
share|improve this answer
This works, but I'd replace the assert with an exception or something. Nobody likes a library call that halts their program! – André Caron Feb 9 '11 at 14:57
What happens when a contains duplicates ? You may want to do if (m.find(a[i]) != m.end()) m.insert(a[i]) else throw .... – Alexandre C. Feb 9 '11 at 15:14
1  
@Alexandre C. insert will return a pair with an iterator into the element and a boolean indicating whether it was inserted or it previously existed. There is no need to do the previous lookup. – David Rodríguez - dribeas Feb 9 '11 at 15:15
@David: I should read the docs sometimes! Thanks for this. So my comment should be read if (!m.insert(std::make_pair(a[i], b[i])).second) throw ... – Alexandre C. Feb 9 '11 at 15:32
@Andre: assert is usually ignored in release builds – Inverse Feb 9 '11 at 16:21
show 1 more comment

Here is a slight variation that uses boost's zip_iterator

#include <iostream>
#include <algorithm>
#include <string>
#include <map>
#include <vector>
#include <boost/iterator/zip_iterator.hpp>
#include <boost/tuple/tuple.hpp>

// this is our map type
typedef std::map<int, std::string> map_t;

// this functor will be called for each "pair"
struct map_adder :
  public std::unary_function<const boost::tuple<const int&, const std::string&>&, void>
{
  map_adder(map_t& my_map) : _my_map(my_map){}

  void operator()(const boost::tuple<const int&, const std::string&>& t) const
  {
    _my_map.insert(std::make_pair(t.get<0>(), t.get<1>()));
  }

private:
  mutable map_t& _my_map;
};

int main(void)
{
  // test setup
  std::vector<int> keys;
  std::vector<std::string> values;
  keys.push_back(1);
  keys.push_back(2);
  keys.push_back(3);
  keys.push_back(4);

  values.push_back("1");
  values.push_back("2");
  values.push_back("3");
  values.push_back("4");

  std::vector<int>::const_iterator beg1 = keys.begin();
  std::vector<int>::const_iterator end1 = keys.end();
  std::vector<std::string>::const_iterator beg2 = values.begin();
  std::vector<std::string>::const_iterator end2 = values.end();

  // destination
  map_t my_map;

  // functor to actually add
  map_adder adder(my_map);

  // simply iterate over...
  std::for_each(
    boost::make_zip_iterator(
      boost::make_tuple(beg1, beg2)
      ),
    boost::make_zip_iterator(
      boost::make_tuple(end1, end2)
      ),
    adder
  );

  std::cout << "size of map: " << my_map.size() << std::endl;

  return 0;
}

okay, here is a simpler version using std::transform, I'm not aware of something which already exists which can convert a boost::tuple to a std::pair hence my simple function...

#include <iostream>
#include <algorithm>
#include <string>
#include <iterator>
#include <map>
#include <vector>
#include <boost/iterator/zip_iterator.hpp>
#include <boost/tuple/tuple.hpp>

// this is our map type
typedef std::map<int, std::string> map_t;

map_t::value_type adapt_tuple(const boost::tuple<const map_t::key_type&, const map_t::mapped_type&>& t)
{
  return map_t::value_type(t.get<0>(), t.get<1>());
}

int main(void)
{
  std::vector<int> keys;
  std::vector<std::string> values;
  keys.push_back(1);
  keys.push_back(2);
  keys.push_back(3);
  keys.push_back(4);

  values.push_back("1");
  values.push_back("2");
  values.push_back("3");
  values.push_back("4");

  std::vector<int>::const_iterator beg1 = keys.begin();
  std::vector<int>::const_iterator end1 = keys.end();
  std::vector<std::string>::const_iterator beg2 = values.begin();
  std::vector<std::string>::const_iterator end2 = values.end();

  map_t my_map;

  // simply iterate over...
  std::transform(
    boost::make_zip_iterator(
      boost::make_tuple(beg1, beg2)
      ),
    boost::make_zip_iterator(
      boost::make_tuple(end1, end2)
      ),
    std::inserter(my_map, my_map.end()),
    adapt_tuple
    );

  std::cout << "size of map: " << my_map.size() << std::endl;

  return 0;
}
share|improve this answer
Can we replace for_each with transform, which would give you a solution similar to mine? – CashCow Feb 9 '11 at 15:49
@CashCow, here you go, the std::transform version, the only thing I'm not aware of is something that can already adapt a boost::tuple to a std::pair, but where's the fun in conforming?? ;) – Nim Feb 9 '11 at 16:18

Here is a solution that uses standard library functions (and C++0x lambdas).

const int data1[] = { 0, 2, 4, 6, 8 };
const int data2[] = { 1, 3, 5, 7, 9 };
std::vector<int> vec1(data1, data1 + 5);
std::vector<int> vec2(data2, data2 + 5);
std::map<int,int> map;

// create map
std::transform(vec1.begin(), vec1.end(), vec2.begin(), std::inserter(map, map.end()), [](int a, int b)
{
    return std::make_pair(a, b);
});

// display map
std::for_each(map.begin(), map.end(), [](const std::pair<int,int>& p)
{
    std::cout << p.first << "," << p.second << "\n";
});

Note: This assumes vec1.size() is not greater than vec2.size().

share|improve this answer
you don't need the lambdas, the following works just as well in C++03 std::transform(vec1.begin(), vec1.end(), vec2.begin(), std::inserter(my_map, my_map.end()), std::make_pair<int, std::string>); – Nim Feb 9 '11 at 16:50
@Nim: Maybe it's just me but MSVC++ won't accept std::make_pair as a binary function object. – Blastfurnace Feb 9 '11 at 17:18
did you try std::make_pair<int, int> ? make_pair without its template arguments would not be resolved. – CashCow Feb 10 '11 at 10:27
@CashCow: Yes but it still wouldn't compile. I also tried wrapping it with std::bind with the same result. Lambdas win again. – Blastfurnace Feb 10 '11 at 16:14

We will use the version of std::transform that takes 2 input sequences. (Not as well known it appears as the one that takes a single sequence).

You can pass in std::make_pair<v1::value_type, v2::value_type> as your transformer (op) thus in your case

std::vector<int> vec1, vec2;
std::map< int, int > mergedMap;
std::transform( vec1.begin(), vec1.end(), vec2.begin(), 
       std::inserter(mergedMap, mergedMap.end() ), std::make_pair<int,int> );

I have tested the code and it compiles fine with GNU 4.3.2

share|improve this answer
1  
The standard library already has a std::transform algorithm that takes two sequences and a binary function object. – Blastfurnace Feb 9 '11 at 15:53
@Blastfurnace, erm, not the last time I looked. std::transform takes a sequence, and an output iterator (where the transformed result will be written)... – Nim Feb 9 '11 at 16:19
@Nim: It's documented on the MSDN site and sgi.com/tech/stl/transform.html. There are two forms of the std::transform algorithm. – Blastfurnace Feb 9 '11 at 16:39
@Blastfurnace, shikes I missed that!! Thx for pointing that out!! – Nim Feb 9 '11 at 16:51
@Nim: I posted an answer with std::transform. I also cheated and used a C++0x lambda expression because it makes the whole thing so simple. – Blastfurnace Feb 9 '11 at 16:52
show 4 more comments

assuming, you are going to ignore the extra (size of vect1 != size of vect2), this could be a solution:

map<T1, T2> target; //vector<T1> vect1, vector<T2> vect2;
vector<T1>::iterator it1 = vect1.begin();
vector<T2>::iterator it2 = vect2.begin();
while(it1 != vect1.end() && it2 != vect2.end())
{
target.insert(std::make_pair(*it1, *it2));
it1++;it2++;
}

EDIT : Thanks Nim for pointing out *it1 thing.

share|improve this answer
*it1 and *it2, else all good... – Nim Feb 9 '11 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.