0

我想将 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;
}
4

3 回答 3

1

供插入使用std::set::insert,阿拉

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

查找,使用std::set::findala

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;
}
于 2011-01-04T17:54:24.187 回答
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在此示例中使用 a。集合没有查找方法。您只需遍历对每个项目执行操作的集合。如果您想使用哈希/键查找特定项目,您将需要查看数据结构,例如std::map.

于 2011-01-04T17:56:55.913 回答
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));
于 2011-01-04T18:22:49.153 回答