C++ 集<>类对象。使用自己的比较器给出来自功能,xtree等的错误 JUNK



c++中的代码如下:

#include<iostream>
#include<string>
#include<set>
using namespace std;
class data{
    int i;
    float f;
    char c;
public:
    bool operator()( data const& a1, data const& a2 ) const{
        return( a1.i < a2.i ||
            (!(a1.i > a2.i) && (a1.f < a2.f)) ||
            (!(a1.i > a2.i) && !(a1.f > a2.f) && (a1.c < a2.c)));
    };
    data();
    data(int i,float f,char c);
    int geti();
};
int data::geti(){
    return i;
};
data::data(int i,float f,char c){
    this->i=i;
    this->f=f;
    this->c=c;
};
int main(){
    set<data> s;
    set<data>::iterator it;
    s.insert(data(1,1.3,'a'));
    s.insert(data(2,2.3,'b'));
    s.insert(data(3,3.3,'c'));
    if((it=s.find(data(1,1.3,'a')))!=s.end())
        cout<<(*it).geti();
    cin.get();
    return 0;
}

这个问题是在C++集合问题中建议修改后提出的

在编译方面,它给出了来自…的大量错误。。\vc\include\functional和。。\vc\include\xtree

请帮我整理错误。谢谢

错误:

1>c:program filesmicrosoft visual studio 8vcincludefunctional(143) : error C2784: 'bool std::operator <(const std::_Tree<_Traits> &,const std::_Tree<_Traits> &)' : could not deduce template argument for 'const std::_Tree<_Traits> &' from 'const data'
1>        c:program filesmicrosoft visual studio 8vcincludextree(1372) : see declaration of 'std::operator <'
1>        c:program filesmicrosoft visual studio 8vcincludefunctional(142) : while compiling class template member function 'bool std::less<_Ty>::operator ()(const _Ty &,const _Ty &) const'
1>        with
1>        [
1>            _Ty=data
1>        ]
1>        c:program filesmicrosoft visual studio 8vcincludeset(60) : see reference to class template instantiation 'std::less<_Ty>' being compiled
1>        with
1>        [
1>            _Ty=data
1>        ]
1>        c:program filesmicrosoft visual studio 8vcincludextree(26) : see reference to class template instantiation 'std::_Tset_traits<_Kty,_Pr,_Alloc,_Mfl>' being compiled
1>        with
1>        [
1>            _Kty=data,
1>            _Pr=std::less<data>,
1>            _Alloc=std::allocator<data>,
1>            _Mfl=false
1>        ]
1>        c:program filesmicrosoft visual studio 8vcincludextree(68) : see reference to class template instantiation 'std::_Tree_nod<_Traits>' being compiled
1>        with
1>        [
1>            _Traits=std::_Tset_traits<data,std::less<data>,std::allocator<data>,false>
1>        ]
1>        c:program filesmicrosoft visual studio 8vcincludextree(94) : see reference to class template instantiation 'std::_Tree_ptr<_Traits>' being compiled
1>        with
1>        [
1>            _Traits=std::_Tset_traits<data,std::less<data>,std::allocator<data>,false>
1>        ]
1>        c:program filesmicrosoft visual studio 8vcincludextree(112) : see reference to class template instantiation 'std::_Tree_val<_Traits>' being compiled
1>        with
1>        [
1>            _Traits=std::_Tset_traits<data,std::less<data>,std::allocator<data>,false>
1>        ]
1>        c:program filesmicrosoft visual studio 8vcincludeset(69) : see reference to class template instantiation 'std::_Tree<_Traits>' being compiled
1>        with
1>        [
1>            _Traits=std::_Tset_traits<data,std::less<data>,std::allocator<data>,false>
1>        ]
1>        c:usersnitin_thokaredocumentsvisual studio 2005projectscppstlex_sets.cpp(31) : see reference to class template instantiation 'std::set<_Kty>' being compiled
1>        with
1>        [
1>            _Kty=data
1>        ]
1>c:program filesmicrosoft visual studio 8vcincludefunctional(143) : error C2784: 'bool std::operator <(const std::basic_string<_Elem,_Traits,_Alloc> &,const _Elem *)' : could not deduce template argument for 'const std::basic_string<_Elem,_Traits,_Alloc> &' from 'const data'
1>        c:program filesmicrosoft visual studio 8vcincludestring(151) : see declaration of 'std::operator <'
1>c:program filesmicrosoft visual studio 8vcincludefunctional(143) : error C2784: 'bool std::operator <(const _Elem *,const std::basic_string<_Elem,_Traits,_Alloc> &)' : could not deduce template argument for 'const _Elem *' from 'const data'
1>        c:program filesmicrosoft visual studio 8vcincludestring(141) : see declaration of 'std::operator <'
1>c:program filesmicrosoft visual studio 8vcincludefunctional(143) : error C2784: 'bool std::operator <(const std::basic_string<_Elem,_Traits,_Alloc> &,const std::basic_string<_Elem,_Traits,_Alloc> &)' : could not deduce template argument for 'const std::basic_string<_Elem,_Traits,_Alloc> &' from 'const data'
1>        c:program filesmicrosoft visual studio 8vcincludestring(131) : see declaration of 'std::operator <'
1>c:program filesmicrosoft visual studio 8vcincludefunctional(143) : error C2784: 'bool std::operator <(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'const data'
1>        c:program filesmicrosoft visual studio 8vcincludexutility(1880) : see declaration of 'std::operator <'
1>c:program filesmicrosoft visual studio 8vcincludefunctional(143) : error C2784: 'bool std::operator <(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'const data'
1>        c:program filesmicrosoft visual studio 8vcincludeutility(76) : see declaration of 'std::operator <'
1>c:program filesmicrosoft visual studio 8vcincludefunctional(143) : error C2676: binary '<' : 'const data' does not define this operator or a conversion to a type acceptable to the predefined operator

运算符<是miss,它可以方便地写成成员函数,如下所示,或者写成类外的友元运算符:

int geti() const;
bool operator<( data const& a2 ) const {
    data const& a1 = *this;
    return( a1.i < a2.i ||
        (!(a1.i > a2.i) && (a1.f < a2.f)) ||
        (!(a1.i > a2.i) && !(a1.f > a2.f) && (a1.c < a2.c)));
};

您还忘记了const限定符:

int geti() const;

使用supply一个operator<作为前面提到的另一个,或者使用data作为std::set的第二个模板参数。

参见std::set声明:

template<
    class Key,
    class Compare = std::less<Key>,
    class Allocator = std::allocator<Key>
> class set;

所以您可以使用std::set<data,data>作为您的集合类型。这样,您的operator()将用于比较data对象。

使用Boost,因为我厌倦了样板。

class data {
  ...
public:
  bool operator<(data const& other) const {
    return boost::tie(this->i, this->f, this->c)
         < boost::tie(other.i, other.f, other.c);
  }

};

比你的版本可读性更强。

data类型没有std::set所需的比较运算符<。你可能想拥有

bool operator < ( data const& a2 ) const {
    return( i < a2.i ||
        (!(i > a2.i) && (f < a2.f)) ||
        (!(i > a2.i) && !(f > a2.f) && (c < a2.c)));
}

而不是CCD_ 11。

最新更新