C++/String/string sort

Материал из C\C++ эксперт
Версия от 10:25, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Sort all characters inside the string

 
 
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    const string hello("Hello, how are you?");
    string s(hello.begin(),hello.end());
    // iterate through all of the characters
    string::iterator pos;
    for (pos = s.begin(); pos != s.end(); ++pos) {
        cout << *pos;
    }
    cout << endl;
    
    sort (s.begin(), s.end());
    cout << "ordered:       " << s << endl;
}
/* 
Hello, how are you?
ordered:          ,?Haeehlloooruwy
 */