일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- IOS
- 구축
- 풀이
- 삼성
- 온라인저지시스템구축
- 삼성기출
- STL
- 백준
- 7576
- SWIFT
- 개발
- 소스코드
- hustoj
- 저지시스템구축
- 역테
- BOJ
- a형
- oj
- 비트마스킹
- 역량테스트
- SWEA
- oj구축
- SW역량테스트
- xcode
- 알고리즘
- 온라인 저지 구축
- 모의 SW 역량테스트
- 모의 SW역량테스트
- SW Expert Academy
- c++
Archives
- Today
- Total
꾸르꾸르
[C++/STL] sort 내림차순 오름차순 본문
2017. 10. 20에 쓰여진 글입니다.
Vector일 경우
#include <iostream>
#include <vector> //vector 위한 헤더
#include <algorithm> //sort위한 헤더
#include <functional> //greater, less 위한 헤더
using namespace std;
int main()
{
vector <int> a;
vector <int >::iterator it;
a.push_back(1);
a.push_back(3);
a.push_back(5);
a.push_back(2);
a.push_back(4);
a.push_back(6);
cout << "초기상태!" << endl;
for (it = a.begin(); it != a.end(); it++)
cout << *it << endl;
cout << endl;
sort(a.begin(), a.end(), greater<int>()); //내림차순정렬
cout << "내림차순정렬!" << endl;
for (it = a.begin(); it != a.end(); it++)
cout << *it << endl;
cout << endl;
cout << "오름차순정렬!" << endl;
sort(a.begin(), a.end(), less<int>()); //오름차순 정렬,
//sort의 기본 정렬은 오름차순 상태임.
//less안써줘도 오름차순으로 정렬됨
for (it = a.begin(); it != a.end(); it++)
cout << *it << endl;
cout << endl;
return 0;
}
배열일 경우
#include <iostream>
#include <algorithm> //sort위한 헤더
#include <functional> //greater, less 위한 헤더
using namespace std;
int main()
{
int arr[6] = { 1,3,5,2,4,6 };
cout << "초기상태!" << endl;
for (int i=0; i < 6; i++)
cout << arr[i] << endl;
cout << endl;
sort(arr, arr + 6, greater<int>()); //내림차순정렬
cout << "내림차순정렬!" << endl;
for (int i = 0; i < 6; i++)
cout << arr[i] << endl;
cout << endl;
cout << "오름차순정렬!" << endl;
sort(arr, arr + 6, less<int>()); //오름차순 정렬,
//sort의 기본 정렬은 오름차순 상태임.
//less안써줘도 오름차순으로 정렬됨
for (int i = 0; i < 6; i++)
cout << arr[i] << endl;
cout << endl;
return 0;
}
'코딩, 알고리즘, 문제풀이 > 문법,알고리즘,C++,기타등등' 카테고리의 다른 글
[C++/STL] binary search (이분 탐색) (0) | 2020.04.23 |
---|---|
[C++] 팩토리얼 함수 구현하기 (0) | 2020.04.23 |
[C++/STL] prev_permutation, next_permutation 순열찾기 (0) | 2020.04.23 |
[C++] xor 연산을 이용한 swap (0) | 2020.04.23 |
[C++] 비트마스킹, 비트마스크, 비트연산자 (0) | 2020.04.22 |
Comments