"C++ rsort"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
10번째 줄: 10번째 줄:
#include <algorithm>
#include <algorithm>
using namespace std;
using namespace std;
bool comp(int a, int b) {
    return a > b;
}


int main() {
int main() {
     vector<int> v = {11, 1, 12, 2};
     vector<int> v = {11, 1, 12, 2};
     sort(v.begin(), v.end(), comp);
     sort(v.begin(), v.end(), [](int a, int b) -> bool { return a > b; });
     for(int x: v) cout << x << ' '; // 12 11 2 1
     for(int el: v) cout << el << ' '; // 12 11 2 1
}
}
</syntaxhighlight>
</syntaxhighlight>
26번째 줄: 22번째 줄:
#include <algorithm>
#include <algorithm>
using namespace std;
using namespace std;
bool comp(int a, int b) {
    return a > b;
}


int main() {
int main() {
     vector<int> v = {11, 1, 12, 2};
     vector<int> v = {11, 1, 12, 2};
     sort(v.begin(), v.end(), [](int a, int b) -> bool { return a > b; });
     sort(v.begin(), v.end(), comp);
     for(int x: v) cout << x << ' '; // 12 11 2 1
     for(int el: v) cout << el << ' '; // 12 11 2 1
}
}
</syntaxhighlight>
</syntaxhighlight>

2023년 9월 17일 (일) 13:05 기준 최신판

1 개요[ | ]

C++ rsort
C++ 역순 정렬
C++ 내림차순 정렬

2 벡터 정렬[ | ]

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
    vector<int> v = {11, 1, 12, 2};
    sort(v.begin(), v.end(), [](int a, int b) -> bool { return a > b; });
    for(int el: v) cout << el << ' '; // 12 11 2 1
}
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

bool comp(int a, int b) {
    return a > b;
}

int main() {
    vector<int> v = {11, 1, 12, 2};
    sort(v.begin(), v.end(), comp);
    for(int el: v) cout << el << ' '; // 12 11 2 1
}

3 같이 보기[ | ]

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