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
- 자료구조
- C언어
- 수광 소자
- WinAPI
- Array
- c++
- stl
- 시스템프로그래밍
- Algorithm
- 아두이노 컴파일러
- vector
- Stack
- html
- list
- map
- 통계학
- priority_queue
- 운영체제
- 라인트레이서
- Deque
- LineTracer
- 컴퓨터 그래픽스
- set
- queue
- arduino compiler
- Arduino
- 아두이노
- Visual Micro
- 아두이노 소스
- directx
Archives
- Today
- Total
Kim's Programming
Deque - shrink_to_fit() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include<deque> #include<iostream> void print(std::deque<int> Target_Deque) { for (std::deque<int>::iterator IterPos = Target_Deque.begin(); IterPos != Target_Deque.end(); ++IterPos) std::cout << *IterPos << " "; std::cout << std::endl; } void main() { std::deque<int> Deque(100); std::cout << Deque.size() << std::endl; Deque.resize(10); std::cout << Deque.size() << std::endl; Deque.shrink_to_fit(); } | cs |
내용)
shrink_to_fit()함수는 메모리 사용량은 데이터 사용량 만큼으로 딱 맞춰서 조정합니다.
결과)
'STL - Container > Container - Deque' 카테고리의 다른 글
Deque - swap() (0) | 2016.01.31 |
---|---|
Deque - size() (0) | 2016.01.31 |
Deque - resize() (0) | 2016.01.31 |
Deque - rend() (0) | 2016.01.31 |
Deque - rbegin() (0) | 2016.01.31 |