반응형
Std::vector
구분 |
Usage |
헤더파일 |
#include <vector> #include <algorithm> |
선언 |
vector<int> V; |
전체 삭제 |
V.clrear(); |
삭제 |
V.erase( it ); |
삽입 |
V.push_back(1 ); |
검색 |
vector<int>::iterator it = find( V.begin(), V.end(), i); if ( it != V.end() ) { // exist } else { // not exist } |
카운팅 |
V.empty() V.size() |
반응형
'C++' 카테고리의 다른 글
Format Specification (0) | 2011.04.20 |
---|---|
std::map (0) | 2009.09.03 |
strcpy_s등의 _s 류의 문자열 처리함수 (4) | 2009.04.01 |
오버로드/오버라이드 (2) | 2009.04.01 |
Warning C4748: /GS can not protect parameters and local variables from local buffer overrun because optimizations are disabled in function (0) | 2009.01.21 |