이 기사에서는 C++ STL에서 multimap::crbegin() 및 multimap::crend() 함수의 작동, 구문 및 예제에 대해 설명합니다.
C++ STL의 멀티맵이란 무엇입니까?
멀티맵은 맵 컨테이너와 유사한 연관 컨테이너입니다. 또한 키-값과 매핑된 값의 조합으로 구성된 요소를 특정 순서로 쉽게 저장할 수 있습니다. 멀티맵 컨테이너에는 동일한 키와 연결된 여러 요소가 있을 수 있습니다. 데이터는 항상 관련 키를 사용하여 내부적으로 정렬됩니다.
멀티맵::cbegin()이란 무엇입니까?
multimap::crbegin() 함수는
구문
mutliMap_name.crbegin();
매개변수
이 함수는 매개변수를 허용하지 않습니다.
반환 값
이 함수는 컨테이너의 마지막 요소를 가리키는 반복자를 반환합니다.
입력
multimap<char, int> newmap; newmap(make_pair(‘a’, 1)); newmap(make_pair(‘b’, 2)); newmap(make_pair(‘c’, 3)); newmap.crbegin();
출력
c:3
예시
#include <bits/stdc++.h> using namespace std; int main(){ //create the container multimap<int, int> mul; //insert using emplace mul.emplace_hint(mul.begin(), 1, 10); mul.emplace_hint(mul.begin(), 2, 20); mul.emplace_hint(mul.begin(), 2, 30); mul.emplace_hint(mul.begin(), 1, 40); mul.emplace_hint(mul.begin(), 1, 50); mul.emplace_hint(mul.begin(), 5, 60); auto it = mul.crbegin(); cout<<"Last element using crbegin() is: {"<<it->first<< ", " << it->second << "}\n"; cout <<"\nElements in multimap is : \n"; cout << "KEY\tELEMENT\n"; for (auto i = mul.crbegin(); i!= mul.crend(); i++){ cout << i->first << "\t" << i->second << endl; } return 0; }
출력
위 코드를 실행하면 다음 출력이 생성됩니다 -
Last element using crbegin() is: {5, 60} Elements in multimap is : KEY ELEMENT 5 60 2 20 2 30 1 10 1 40 1 50
멀티맵::crend()란 무엇입니까?
multimap::crend() 함수는
구문
newmultimap.crend();
매개변수
이 함수는 매개변수를 허용하지 않습니다.
반환 값
연결된 컨테이너의 이전 첫 번째 요소를 가리키는 반복자를 반환합니다.
입력
multimap<char, int&lgt; newmap; newmap(make_pair(‘a’, 1)); newmap(make_pair(‘b’, 2)); newmap(make_pair(‘c’, 3)); newmap.crend();
출력
error
예시
#include <bits/stdc++.h> using namespace std; int main(){ //create the container multimap<int, int> mul; //insert using emplace mul.emplace_hint(mul.begin(), 1, 10); mul.emplace_hint(mul.begin(), 2, 20); mul.emplace_hint(mul.begin(), 2, 30); mul.emplace_hint(mul.begin(), 1, 40); mul.emplace_hint(mul.begin(), 1, 50); mul.emplace_hint(mul.begin(), 5, 60); cout << "\nElements in multimap is : \n"; cout << "KEY\tELEMENT\n"; for (auto i = mul.crbegin(); i!= mul.crend(); i++){ cout <<<; i->first << "\t" << i->second < endl; } return 0; }
출력
위 코드를 실행하면 다음 출력이 생성됩니다 -
Elements in multimap is : KEY ELEMENT 5 60 2 20 2 30 1 10 1 40 1 50