怎么用我自己写的比较函数和STL中的sort对string排序
怎么用我自己写的比较函数和STL中的sort对string排序boolmycmp(conststring&a,conststring&b){if(a.size()==b....
怎么用我自己写的比较函数和STL中的sort对string排序
bool mycmp(const string & a, const string & b)
{
if(a.size() == b.size())
return a < b;
return a.size() < b.size();
}
调用:sort(rec, rec + cnt, mycmp());
我这样写比较函数..编译不通过啊.. 展开
bool mycmp(const string & a, const string & b)
{
if(a.size() == b.size())
return a < b;
return a.size() < b.size();
}
调用:sort(rec, rec + cnt, mycmp());
我这样写比较函数..编译不通过啊.. 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询