STL 정리
·
C++/Memo
결합컨테이너 값에 키를 결합하고, 그 키를 사용하여 그 값을 찾는다. 1. map https://chanheess.tistory.com/116 [C++] stl map map에 대한 설명 - 노드기반으로 이루어진 균형 이진 트리 ( 어느 한 곳을 기준으로 왼쪽은 작은 것이, 오른쪽은 큰 것이 저장 ) - key와 value로 이루어져 있으며 pair의 형태로 저장된다 - key는 중복 chanheess.tistory.com 2. set https://chanheess.tistory.com/147 [C++] stl set #include set s; s.insert(1); s.insert(1); s.insert(4); s.insert(2); s.insert(5); for (const auto &i : s)..