0

我在名为 myNamespace 的命名空间中有一个模板函数(如下):

template <typename setX>
void getRandomItems(NaturalNumber size, setX &random, setX &items)
{
    assert(size <= items.size());

    //set of randomly selected indices for items
    set<NaturalNumber> index;
    NaturalNumber r, i;

    while(index.size() < size)
    {
        r = unifRand(0,items.size()-1);
        index.insert(r);
    }

    typename setX::iterator it, sit = items.begin();
    for(i = 0, it = index.begin(); it != index.end(); it ++)
    {
        //find the r-th elt in index
        r = *it;
        for(; i < r; i ++)
            sit++;

        random.insert(*sit);
    }
}

但是,每当我调用此函数时,我都会收到以下错误:

generic.h:在函数 'void myNamespace::getRandomItems(NaturalNumber, setX&, setX&) [with setX = std::set<std::basic_string<char>>, NaturalNumber = long unsigned int]'中:
合成图.C:87:55: 从这里实例化
generic.h:74:32: 错误: 'it = index.std::set::begin [with _Key = long unsigned int, _Compare = std::less<long unsigned int> 中的 'operator=' 不匹配, _Alloc = std::allocator<long unsigned int>, std::set<_Key, _Compare, _Alloc>::iterator = std::_Rb_tree_const_iterator<long unsigned int>]()'
/usr/include/c++/4.5/bits/stl_tree.h:224:5:注意:候选是:std::_Rb_tree_const_iterator<std::basic_string<char> >& std::_Rb_tree_const_iterator<std::basic_string<char> >::operator=(const std::_Rb_tree_const_iterator<std::basic_string<char> >&)
合成图.C:87:55: 从这里实例化
generic.h:74:32: 错误:'it != index.std::set<_Key, _Compare, _Alloc>::end [with _Key = long unsigned int, _Compare = std ::less<long unsigned int>, _Alloc = std::allocator<long unsigned int>, std::set<_Key, _Compare, _Alloc>::iterator = std::_Rb_tree_const_iterator<long unsigned int>]()'
/usr/include/c++/4.5/bits/stl_tree.h:291:7:注意:候选是:bool std::_Rb_tree_const_iterator<_Tp>::operator!=(const std::_Rb_tree_const_iterator<_Tp>::_Self&) const [with _Tp = std::basic_string<char>, std::_Rb_tree_const_iterator<_Tp>::_Self = std::_Rb_tree_const_iterator<std::basic_string<char> >]
generic.h:77:4:错误:无法在赋值中将 'const std::basic_string<char>' 转换为 'NaturalNumber'

我已经尝试了所有组合,但没有运气,请帮助我!!!

4

2 回答 2

1

setX不是一组NaturalNumbers 所以当你说迭代器不兼容时it = index.begin()。相反,您可以制作it一个迭代器set<NaturalNumber>,我无法完全弄清楚您在这里真正想要做什么。

我还注意到,在您的内部循环中,您没有进行任何检查以确保sit不会超出其设置的末尾。

于 2011-07-11T21:51:54.143 回答
1

您正在尝试分配不兼容的迭代器。

也许你的意思是

set<NaturalNumber>::iterator it;
typename setX::iterator sit = items.begin();

代替

typename setX::iterator it, sit = items.begin();
于 2011-07-11T21:57:32.610 回答