0
void Iterator::displayStringFour(const vector<string> &v)
{
    vector<string>tempVect(v.size());
    tempVect = v;
    int smallest;

    sort(tempVect.begin(), tempVect.end(), Equal());

在上面的行中,我按照字符串中的最少字符到最大的顺序对向量进行排序。

    pair<vector<string>::iterator,vector<string>::iterator> equalRange;

*下一行是它抛出错误的地方,指出该集合未排序。我已经使用函子对象按从最小字符到最大的顺序进行排序,我不确定我还希望如何对向量进行排序 *

    equalRange = equal_range(tempVect.begin(),tempVect.end(),"-----");
    vector<string>::iterator range = equalRange.first;

    while(range!=equalRange.second)
    {
        cout<<*range;
        ++range;
    }
}

这是我的仿函数对象,它接受两个字符串并对向量进行排序

class Equal
{
public:
    bool operator()(string a,string b)
    {
        return a.length()<b.length();
    }
};
4

1 回答 1

2

Pass Equal() to equal_range as fourth argument, otherwise it will use the default compare functor, which is 'less'.

于 2013-05-07T00:41:05.603 回答