일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘 공부방법
- 자료구조
- 입/출력
- getline
- 구조체와 클래스의 공통점 및 차이점
- 장고란
- 매크로
- string 함수
- k-eta
- string 메소드
- Django Nodejs 차이점
- 엑셀
- correlation coefficient
- Django란
- double ended queue
- iOS14
- 2557
- scanf
- 입출력 패턴
- Django의 편의성
- 시간복잡도
- EOF
- c++
- vscode
- 프레임워크와 라이브러리의 차이
- 표준 입출력
- UI한글변경
- 백준
- 연결요소
- 이분그래프
Archives
- Today
- Total
Storage Gonie
(23) C++ tuple헤더의 tuple 사용법 본문
반응형
용도 : 두 개 이상의 타입을 하나로 묶어줌, pair의 확장버전이라고 생각하면됨.
1. 헤더파일
#include<tuple>
2. 변수 선언 및 값 변경
#include <iostream>
#include <tuple>
using namespace std;
int main()
{
tuple <int, int, int , int> t1 = make_tuple(1,2,3,4);
tuple <int, int, int , int> t2 = make_tuple(5,6,7,8);
cout << get<0>(t1) << endl; // 1
cout << get<1>(t1) << endl; // 2
cout << get<2>(t2) << endl; // 7
get<3>(t2) = 3; // 8 -> 3 변경됨
cout << get<3>(t2) << endl; // 3
}
3. 문제해결시 사용되는 용도
- algorithm헤더의 sort()에 사용되는 비교함수 작성시 중첩되는 if문을 사용하지 않고 정렬 순서를 지정할 수 있는 것
- https://ldgeao99.tistory.com/entry/5-C-백준-No10825-국영수
반응형
'알고리즘 > 문제해결을 위한 C++ 공부' 카테고리의 다른 글
(25) C++ algorithm헤더의 nth_element 사용법 (0) | 2019.05.19 |
---|---|
(24) C++ map헤더의 map 사용법 (0) | 2019.05.19 |
(22) C++ utility헤더의 pair 구조체 (0) | 2019.05.14 |
(21) C++ algorithm헤더의 min, max_element함수 (0) | 2019.05.08 |
(20) C++ 입/출력속도 높이기 (0) | 2019.05.08 |
Comments