C++ 문자열 벡터 정렬

Jmnote (토론 | 기여)님의 2023년 9월 15일 (금) 01:41 판 (새 문서: ==개요== ;C++ 문자열 벡터 정렬 <syntaxhighlight lang='cpp' run> #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<stri...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ 문자열 벡터 정렬
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
    vector<string> v = {"lemon", "apple", "cherry", "banana"};
    sort(v.begin(), v.end());
    for(auto& el: v) cout << el << ' '; // apple banana cherry lemon 
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}