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
- LineTracer
- map
- c++
- stl
- Array
- 라인트레이서
- Arduino
- Stack
- 아두이노 소스
- Algorithm
- Deque
- queue
- list
- directx
- vector
- html
- 아두이노
- 수광 소자
- 운영체제
- 아두이노 컴파일러
- WinAPI
- 통계학
- 자료구조
- priority_queue
- set
- arduino compiler
- 컴퓨터 그래픽스
- C언어
- 시스템프로그래밍
- Visual Micro
Archives
- Today
- Total
Kim's Programming
Stack - size() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include<stack> #include<deque> #include<iostream> void print(std::stack<int> Target_Stack) { while (!Target_Stack.empty()) { std::cout << Target_Stack.top() << " "; Target_Stack.pop(); } std::cout << std::endl; } void main() { std::deque<int> Deque = { 1,2,3,4 }; std::stack<int> Stack(Deque); std::stack<int> Stack2; print(Stack); std::cout << Stack.size() << std::endl; print(Stack); } | cs |
내용)
stack의 사이즈(데이터 갯수)를 리턴합니다.
결과)
'STL - Container > Container - Stack' 카테고리의 다른 글
Stack - top() (0) | 2016.01.30 |
---|---|
Stack - swap() (0) | 2016.01.30 |
Stack - push() (0) | 2016.01.30 |
Stack - pop() (0) | 2016.01.30 |
Stack - Operator '=' (0) | 2016.01.30 |