1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#include <algorithm>
#include <iostream>
#include <string>
#include <cstring>
#include <iterator>
using namespace std;
class CaseString
{
public:
bool operator()(string const &first, string const &second) const
{
return strcasecmp(first.c_str(), second.c_str()) < 0;
}
};
int main()
{
string saints[] = {"Oh", "when", "the", "saints"};
cout << "All previous permutations of 'Oh when the saints':\n";
cout << "Sequences:\n";
do
{
copy(saints, saints + 4, ostream_iterator<string>{ cout, " " });
cout << '\n';
}
while (prev_permutation(saints, saints + 4, CaseString{}));
cout << "After first sorting the sequence:\n";
sort(saints, saints + 4, CaseString{});
cout << "Sequences:\n";
while (prev_permutation(saints, saints + 4, CaseString{}))
{
copy(saints, saints + 4, ostream_iterator<string>{ cout, " " });
cout << '\n';
}
cout << "No (more) previous permutations\n";
}
/*
Displays:
All previous permutations of 'Oh when the saints':
Sequences:
Oh when the saints
Oh when saints the
Oh the when saints
Oh the saints when
Oh saints when the
Oh saints the when
After first sorting the sequence:
Sequences:
No (more) previous permutations
*/
|