哈希表和2d向量

时间:2011-01-04 17:45:13

标签: c++ vector hashtable unordered-set

我想逐行将2d向量推入哈希表,然后在哈希表中搜索行(向量)并希望能够找到它。我想做像

这样的事情
#include <iostream>
#include <set>
#include <vector>
using namespace std;

int main(){

std::set < vector<int> > myset;

vector< vector<int> > v;

int k = 0;

for ( int i = 0; i < 5; i++ ) {
 v.push_back ( vector<int>() );

for ( int j = 0; j < 5; j++ )
 v[i].push_back ( k++ );
}

for ( int i = 0; i < 5; i++ ) {
  std::copy(v[i].begin(),v[i].end(),std::inserter(myset)); // This is not correct but what is the right way ?

// and also here, I want to search for a particular vector if it exists in the table. for ex. myset.find(v[2].begin(),v[2].end()); i.e if this vector exists in the hash table ?

}

  return 0;
}

我不确定如何在集合中插入和查找向量。所以,如果有人可以指导我,那将会很有帮助。感谢

更新

因为我意识到std::set不是哈希表我决定使用unordered_map但是我应该如何插入和查找元素:

#include <iostream>
#include <tr1/unordered_set>
#include <iterator>
#include <vector>
using namespace std;

typedef std::tr1::unordered_set < vector<int> > myset;

int main(){
myset c1;
vector< vector<int> > v;

int k = 0;

for ( int i = 0; i < 5; i++ ) {
 v.push_back ( vector<int>() );

for ( int j = 0; j < 5; j++ )
 v[i].push_back ( k++ );
}

for ( int i = 0; i < 5; i++ )  
 c1.insert(v[i].begin(),v[i].end()); // what is the right way? I want to insert vector by vector. Can I use back_inserter in some way to do this?

// how to find the vectors back?

  return 0;
}

3 个答案:

答案 0 :(得分:1)

用于插入使用std::set::insert,ala

myset.insert(v.begin(), v.end());

查找,使用std::set::find ala

std::set < vector<int> >::iterator it = myset.find(v[1]);

工作示例:

#include <iostream>
#include <set>
#include <vector>
using namespace std;

int main()
{
  typedef vector<int> int_v_t;
  typedef set<int_v_t> set_t;

  set_t myset;

  // this creates 5 items 
  typedef vector<int_v_t> vec_t;
  vec_t v(5);

  int k = 0;

  for(vec_t::iterator it(v.begin()), end(v.end()); it != end; ++it)
  {
   for (int j = 0; j < 5; j++)
    it->push_back(k++);
  }

  // this inserts an entry per vector into the set 
  myset.insert(v.begin(), v.end());

  // find a specific vector
  set_t::iterator it = myset.find(v[1]);

  if (it != myset.end()) cout << "found!" << endl; 

  return 0;
}

答案 1 :(得分:0)

使用std::copy插入集合:

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

std::vector<int> v1;
// Fill in v1 here
std::vector<int> v2;
std::copy(v1.begin(), v1.end(), std::back_inserter<std::vector<int> >(v2));

您也可以使用std::vector的赋值,插入或复制构造函数来执行相同操作。

您在此示例中使用的是std::set。集合没有查找方法。您只需遍历对每个项目执行操作的集合。如果您想使用井号/密钥查找特定项目,您需要查看std::map等数据结构。

答案 2 :(得分:0)

for ( int i = 0; i < 5; i++ ) {
  std::copy(v[i].begin(),v[i].end(),std::inserter(myset)); // This is not correct but what is the right way ?
}

这是不正确的,因为你试图将矢量向量中的每个向量的整数复制到集合中。您的意图和集合的类型表明您希望将5个向量插入到您的集合中。然后你就可以这样做(没有for循环):

std::copy(v.begin(), v.end(), std::inserter(myset));