4

我只std::vector在这个问题中使用,我可以保证每个向量中没有重复(但每个向量中没有任何顺序)。如何合并我拥有的向量?

例子:

如果我有以下向量...

1
1
3 2
5
5 4
2
4
4 2

在联合之后,我应该只剩下两个向量:

1
2 3 4 5

同样,我只使用矢量,std::set不允许。

4

3 回答 3

14

您可以使用 std::set_union 算法。

int first[] = {5,10,15,20,25};
  int second[] = {50,40,30,20,10};
  std::vector<int> v(10);                      // 0  0  0  0  0  0  0  0  0  0
  std::vector<int>::iterator it;

  std::sort (first,first+5);     //  5 10 15 20 25
  std::sort (second,second+5);   // 10 20 30 40 50

  it=std::set_union (first, first+5, second, second+5, v.begin());
                                               // 5 10 15 20 25 30 40 50  0  0
  v.resize(it-v.begin());                      // 5 10 15 20 25 30 40 50

参考:http ://www.cplusplus.com/reference/algorithm/set_union/

于 2013-04-10T04:23:21.357 回答
1

对向量进行排序,然后像合并排序一样合并它们,但不要插入重复项。

vector<int> a, b, c;
sort( a.begin(), a.end());
sort( b.begin(), b.end());
int i = 0, j = 0;
while( i < a.size() && j < b.size())
if( a[ i ] == b[ j ] )
{
   c.push_back( a[ i ] );
   ++i, ++j;
}
else if( a[ i ] < b[ j ] )
   c.push_back( a[ i++ ] );
else 
   c.push_back( b[ j++ ] );

while( i < a.size()) c.push_back( a[ i++ ] );
while( j < b.size()) c.push_back( b[ j++ ] );
于 2013-04-10T04:25:04.113 回答
0

这是我的代码:

template<class T> bool vectorExist (vector<T> c, T item)
{
    return (std::find(c.begin(), c.end(), item) != c.end());
}

template<class T> vector<T> vectorUnion (vector<T> a, vector<T> b)
{
    vector<T> c;

    std::sort(a.begin(), a.end());
    std::sort(b.begin(), b.end());

    auto i = a.begin();
    auto j = b.begin();

    while (i != a.end() || j != b.end())
    {
        if (j == b.end() || *i < *j)
        {
            if(!exist(c,*i)) c.insert(*i);
            i++;
        }
        else
        {
            if(!exist(c,*j)) c.insert(*j)
            j++;
        }
    }

    return c;
}
于 2013-04-10T10:23:09.120 回答