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

8번째 줄: 8번째 줄:
using namespace std;
using namespace std;
int main() {
int main() {
vector<int> v = {3,4,2,1};
vector<int> v = {11, 1, 12, 2};
     sort(v.begin(), v.end());
     sort(v.begin(), v.end());
     for (int x: v) cout << x << " ";  
     for (int x: v) cout << x << ' '; // 1 2 11 12
    // 1 2 3 4
}
}
</syntaxhighlight>
</syntaxhighlight>

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 }}