#include <iostream>
#include <map>
using namespace std;
int main()
{
multimap<int, int> a;
a.insert(pair<int, int>(1, 2));
a.insert(pair<int, int>(1, 2));
a.insert(pair<int, int>(2, 4));
cout << "모든 값을 가져오기 " << endl;
for (multimap<int, int>::iterator it = a.begin(); it != a.end(); ++it)
cout << it->first << "\t" << it->second << endl;
cout << "\n특정 키(2)에 대한 값을 가져오기 " << endl;
auto range = a.equal_range(2);
for (auto it = range.first; it != range.second; it++)
cout << it->first << "\t" << it->second << endl;
}

'CS > 자료구조 & 알고리즘' 카테고리의 다른 글
float 자료형의 메모리 구조 (컴퓨터의 실수 표현) (0) | 2025.03.23 |
---|---|
[C++] 조합 (Combination) 구할 수 있는 알고리즘 (0) | 2025.03.12 |
논 블로킹 알고리즘 (Non-blocking Algorithms) (1) | 2025.02.16 |
블로킹과 논블로킹 큐 (Blocking/Non-Blocking Queue) (0) | 2025.02.16 |
최장 증가 수열 (LIS, Longest Increasing Subsquence) (0) | 2024.11.08 |