Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- priority_queue
- map
- html
- stl
- directx
- WinAPI
- 시스템프로그래밍
- 아두이노 소스
- c++
- 수광 소자
- Arduino
- 운영체제
- Visual Micro
- arduino compiler
- vector
- queue
- C언어
- set
- Array
- Deque
- 통계학
- Algorithm
- 자료구조
- 아두이노
- list
- Stack
- 아두이노 컴파일러
- LineTracer
- 라인트레이서
- 컴퓨터 그래픽스
Archives
- Today
- Total
Kim's Programming
Vector - shrink_to_fit() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include<vector> #include<iostream> void print(std::vector<int> Target_Vector) { for (std::vector<int>::iterator IterPos = Target_Vector.begin(); IterPos != Target_Vector.end(); ++IterPos) std::cout << *IterPos << " "; std::cout << std::endl; } void main() { std::vector<int> Vector(15,2); Vector.reserve(50); std::cout << std::endl << "shrink_to_fit()" << std::endl; std::cout << "Previous ->"; std::cout << Vector.capacity() << std::endl; Vector.shrink_to_fit(); std::cout << "After ->"; std::cout << Vector.capacity() << std::endl; } | cs |
내용)
vector의 capacity를 데이터가 손실 되지 않는 한 최소한으로 만듭니다.
결과)
'STL - Container > Container - Vector' 카테고리의 다른 글
Vector - swap() (0) | 2016.01.30 |
---|---|
Vector - size() (0) | 2016.01.30 |
Vector - reserve() (0) | 2016.01.30 |
Vector - resize() (0) | 2016.01.30 |
Vector - rend() (0) | 2016.01.29 |