반응형 map STL1 [C++]STL map 정리 1) Map 이란? 특정 순서에 따라 키 값과 매핑된 값의 조합으로 형성된 요소를 저장하는 연관 컨테이너. Key 와 value 쌍으로 이루어진 이진 트리 구조이다. 2) 헤더파일 #include 3) 변수 선언 std::map map_sample1;//map std::map map_sample2 = {{'A',10}, {'B',9} }; 4) Map 추가 map_sample1.insert(std::make_pair('C', 8)); map_sample2['D'] = 7; map_sample2.insert(std::pair('E', 5)); 5) Map 반복문 사용 및 출력 for (auto iter = map_sample2.begin(); iter != map_sample2.end(); iter++) .. 2021. 10. 8. 이전 1 다음 반응형