이 기사에서는 C++ STL에서 multimap::count() 함수의 작동, 구문 및 예제에 대해 설명합니다.
C++ STL의 멀티맵이란 무엇입니까?
멀티맵은 맵 컨테이너와 유사한 연관 컨테이너입니다. 또한 키-값과 매핑된 값의 조합으로 구성된 요소를 특정 순서로 쉽게 저장할 수 있습니다. 멀티맵 컨테이너에는 동일한 키와 연결된 여러 요소가 있을 수 있습니다. 데이터는 항상 관련 키를 사용하여 내부적으로 정렬됩니다.
멀티맵::count()란 무엇입니까?
Multimap::count() 함수는
멀티맵 컨테이너에 키가 없으면 이 함수는 0을 반환합니다.
구문
multimap_name.count(key_type& key);
매개변수
이 함수는 다음 매개변수를 허용합니다. -
-
키 − 키와 관련된 요소의 수를 검색하고 계산하려는 키입니다.
반환 값
이 함수는 정수, 즉 동일한 키를 가진 요소의 수를 반환합니다.
입력
std::multimap<char, int> odd, eve; odd.insert(make_pair(‘a’, 1)); odd.insert(make_pair(‘a, 3)); odd.insert(make_pair(‘c’, 5)); odd.count(‘a’);
출력
2
예시
#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.begin(); i!= mul.end(); i++){ cout << i->first << "\t" << i->second << endl; } cout<<"Key 1 appears " << mul.count(1) <<" times in the multimap\n"; cout<<"Key 2 appears " << mul.count(2) <<" times in the multimap\n"; return 0; }
출력
위 코드를 실행하면 다음 출력이 생성됩니다. -
Elements in multimap is : KEY ELEMENT 1 50 1 40 1 10 2 30 2 20 5 60 Key 1 appears 3 times in the multimap Key 2 appears 2 times in the multimap