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;
    }
}

これは、2 つの文字列を取り、ベクトルを並べ替えるファンクター オブジェクトです。

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

1 に答える 1