map 사용

-> 인덱스를 문자열로 받는 배열

 

1. map : balance tree로 구현(RBtree)

map< string, int> m;

-> <key, value>

- insert 방식

그냥 대입하기

ex) m["hi"] = 50;

 

2. unordered_map : hash table로 구현(hash map)

 

iterator방식으로 순환

<first, second>

'자윤이와고리즘 > Algorithm' 카테고리의 다른 글

그리디 & 구현  (0) 2020.10.02
스택, 큐, 재귀함수, DFS, BFS  (0) 2020.09.30
Brute-Force  (0) 2020.06.18
시간복잡도  (0) 2020.03.12
BFS기본 구조  (0) 2019.03.20

+ Recent posts