Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- boj 2661
- 백준 19238
- 2636
- 백준 1806
- 백준 2661
- 10800
- 백준 2470
- 백준 2167
- boj 2167
- boj 2470
- boj 2206
- boj 2178
- 백준 10800
- 백준 1697
- boj 19238
- 백준 2108
- boj 2636
- boj 2108
- boj 1697
- 2167
- 백준 2636
- 백준 2178
- boj 10800
- boj 2667
- boj 2635
- boj 1503
- 백준 1503
- 백준 2635
- 백준 2206
- boj 1806
Archives
- Today
- Total
목록압축개념 (1)
말랑말랑한 개발자 이야기
[코테를 위한 압축 개념] C++ STL 맵(map), 셋(set)
[코테를 위한 압축 개념] C++ STL 맵(map), 셋(set) Map Map은 연관 컨테이너로 원소를 key와 value의 쌍으로 저장한다. 연관 컨테이너는 균형 이진 트리를 이용하여 O(logN)의 시간복잡도로 원하는 원소를 빠르게 찾을 수 있다. #include #include using namespace std; int main(){ map temp; return 0; } 위와 같이 선언하여 사용할 수 있다. Map의 사용법 원소 쌍 추가하기 #include #include using namespace std; int main(){ map temp; temp.insert({1, "hello"}); temp.insert(make_pair(2, "world")); temp[3] = "map"; c..
알고리즘/개념
2021. 1. 10. 15:13