从矢量矢量中删除重叠

时间:2011-06-07 00:11:37

标签: c++ arrays vector

基本上我正在做的是设置封面问题,从具有相同数字的向量中删除重复。一个例子:

排序后我有以下矢量矢量:

{{1,2,3,4,5},{2,3,7,8},{10,11,12}}

现在,我想从2nd向量中移除2,3并再次排序......

 {{1,2,3,4,5},{10,11,12},{7,8}}

我已经实现了一些代码来对向量的向量进行排序,但是我有问题从较小的向量中删除出现的事件?

排序功能:

sort(ROWS.begin(),ROWS.end(),VectorsSort());

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

  1. 您不需要定义矢量排序谓词。 Vector已经定义了operator<,它基于std::lexicographical_compare

  2. 这是你的意思吗?

  3. std::for_each(rows.begin(), rows.end(), [](std::vector<int>& row) {
        row.erase(std::remove_if(row.begin(), row.end(), [](int number) -> bool {
            return (number == 2) || (number == 3);
        }), row.end());
    });
    

答案 1 :(得分:1)

将它拆开并拿走你需要的东西:

#include <algorithm>
#include <vector>

struct binary_search_pred
{
    typedef bool result_type;

    explicit binary_search_pred(std::vector<int> const& v) : v_(&v) { }

    bool operator ()(int const& i) const
    {
        return std::binary_search(v_->begin(), v_->end(), i);
    }

private:
    std::vector<int> const* v_;
};

struct size_comparison_desc
{
    typedef bool result_type;

    typedef std::vector<int> const& arg_t;
    bool operator ()(arg_t a, arg_t b) const
    {
        return b.size() < a.size();
    }
};

void set_cover(std::vector<std::vector<int> >& vec)
{
    typedef std::vector<std::vector<int> > vec_t;
    typedef vec_t::iterator iter_t;
    typedef vec_t::const_iterator citer_t;

    if (vec.empty() || vec.size() == 1)
        return;

    for (iter_t v = vec.begin() + 1, v_end = vec.end(); v != v_end; ++v)
        for (citer_t p = vec.begin(); p != v; ++p)
            v->erase(
                std::remove_if(v->begin(), v->end(), binary_search_pred(*p)),
                v->end()
            );
    std::sort(vec.begin(), vec.end(), size_comparison_desc());
}

(请注意,set_cover要求所包含的std::vector<int> 必须已经排序。)


编辑#1:

根据现已删除的评论中的要求,版本定位于std::map<int, std::vector<int>>而不是std::vector<std::vector<int>>(使用原始代码中的binary_search_pred):

#include <algorithm>
#include <map>
#include <vector>

void set_cover(std::map<int, std::vector<int> >& m)
{
    typedef std::map<int, std::vector<int> > map_t;
    typedef map_t::iterator iter_t;
    typedef map_t::const_iterator citer_t;

    if (m.empty() || m.size() == 1)
        return;

    for (iter_t v = ++m.begin(), v_end = m.end(); v != v_end; ++v)
        for (citer_t p = m.begin(); p != v; ++p)
            v->second.erase(
                std::remove_if(
                    v->second.begin(),
                    v->second.end(),
                    binary_search_pred(p->second)
                ),
                v->second.end()
            );
}

请注意,此处的map始终按其键排序,而不是按所包含的vector的大小排序(这是您想要的)。也许你想要一个std::vector<std::pair<int, std::vector<int>>>


编辑#2:

根据现已删除的评论中的要求,版本定位于std::vector<std::pair<int, std::vector<int>>>而不是std::map<int, std::vector<int>>(使用原始代码中的binary_search_pred):

#include <algorithm>
#include <utility>
#include <vector>

struct size_comparison_desc
{
    typedef bool result_type;

    typedef std::pair<int, std::vector<int> > const& arg_t;
    bool operator ()(arg_t a, arg_t b) const
    {
        return b.second.size() < a.second.size();
    }
};

void set_cover(std::vector<std::pair<int, std::vector<int> > >& vec)
{
    typedef std::vector<std::pair<int, std::vector<int> > > vec_t;
    typedef vec_t::iterator iter_t;
    typedef vec_t::const_iterator citer_t;

    if (vec.empty() || vec.size() == 1)
        return;

    for (iter_t v = vec.begin() + 1, v_end = vec.end(); v != v_end; ++v)
        for (citer_t p = vec.begin(); p != v; ++p)
            v->second.erase(
                std::remove_if(
                    v->second.begin(),
                    v->second.end(),
                    binary_search_pred(p->second)
                ),
                v->second.end()
            );
    std::sort(vec.begin(), vec.end(), size_comparison_desc());
}