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 |
Tags
- 유니티
- Raycast
- eulerAngles
- Quaternion.Euler
- 유니티 오브젝트 풀링
- unity
- 유니티 시야 가림
- c++ 문자열 자르기
- 유니티 리소스매니저
- c++
- 유니티 Vector3
- LookRotation
- 코드블럭 테마
- LayerMask
- 너비 우선 탐색
- 유니티 InputManager
- ML-Agents
- 오브젝트 풀링
- 깊이 우선 탐색
- 유니티 Collision
- Mathf.Clamp
- 소스코드 줄번호
- 이진트리
- 유니티 Rotate
- LFS
- git-lfs
- InputManager
- 유니티 머신러닝
- 알고스팟
- 유니티 ResourceManager
Archives
- Today
- Total
무민은귀여워
[c++] map 사용 예제 본문
반응형
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#include <iostream>
#include <vector>
#include <map>
using namespace std;
/*
문자열을 매개변수로 받고 각 문자가 몇 번 사용되었는지 출력.
*/
void countStrings(vector<string> s)
{
map<string, int> m;
for (int i = 0; i < (int)s.size(); i++)
{
m[s[i]]++;
}
map<string, int>::iterator it = m.begin();
while (it != m.end())
{
cout << (*it).first << " " << (*it).second << endl;
++it;
}
}
int main()
{
vector<string> s;
s.push_back("test");
s.push_back("test");
s.push_back("ex");
s.push_back("one");
s.push_back("test");
s.push_back("one");
countStrings(s);
/*
출력
ex 1
one 2
test 3
*/
return 0;
}
|
cs |
반응형
'IT > c, c++' 카테고리의 다른 글
같은 자료형인 두 값을 교환하는 함수 형식 매크로 ( swap 매크로 ) (0) | 2021.05.18 |
---|---|
typedef 보다 별칭 선언을 선호하라 (0) | 2020.01.17 |
[c++] next_permutation 조합 구하기 (0) | 2019.11.20 |
cgame 프레임워크 (0) | 2019.07.16 |
error) c4996 에러 #pragma warning(disable:4996) (0) | 2019.07.12 |
Comments