[c++] 외국정렬

예를 들어, 다음과 같이 std::sort 함수를 사용하여 문자열을 외국 정렬할 수 있습니다.

#include <iostream>
#include <string>
#include <algorithm>

int main() {
    std::string str = "banana";
    std::sort(str.begin(), str.end());
    std::cout << str;  // "aaabnn"
    return 0;
}

위 예제에서 std::sort 함수는 문자열을 알파벳순으로 정렬시켜줍니다.

더 자세한 내용은 cppreference를 참조하세요.