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
- Git
- url파싱
- System.IndexOutOfRangeException
- url 파싱
- create
- 프로토타입
- Telerik
- git commit vi
- multipart/form-data
- MariaDB
- C# sprintf
- VisualStudio2019
- postgresql
- 정처기
- UI
- c# 클로저
- c# for
- IndexOutOfRangeException
- restapi
- 정보처리기사 실기
- drop
- HeidiSQL
- MFC
- 정보처리기사
- show
- wss 파싱
- POST
- WinForms
- C#
- 정처기 실기
Archives
- Today
- Total
목록vector as map value (1)
달짱달짱
[map, vector] map 의 value 로 vector 사용하기
* map - 헤더 : #include - 선언 : map mapName - 삽입 : mapName[key] = value * vector - 헤더 : #include - 선언 : vector vectorName - 전체 삭제 : vectorName.clear( ) - 삽입 : push_back(값) - 사이즈 : vectorName.size( ) #include #include #include #include using namespace std; map CountryMap; string FindCountryByFood(string FoodName){ //Food가 일치하는 Country 반환 map::iterator iter; string CountryName; for (iter = CountryMap..
C,C++
2019. 11. 28. 09:48