"C++ 벡터 정렬"의 두 판 사이의 차이

2번째 줄: 2번째 줄:
;C++ 벡터 정렬
;C++ 벡터 정렬


<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>

2023년 9월 17일 (일) 12:41 판

1 개요

C++ 벡터 정렬
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
	vector<int> v = {11, 1, 12, 2};
    sort(v.begin(), v.end());
    for (int x: v) cout << x << ' '; // 1 2 11 12 
}

2 같이 보기

3 참고

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