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
- 라인트레이서
- Algorithm
- Stack
- 아두이노 컴파일러
- 아두이노 소스
- list
- 운영체제
- c++
- arduino compiler
- C언어
- Visual Micro
- set
- map
- stl
- vector
- WinAPI
- html
- priority_queue
- 시스템프로그래밍
- LineTracer
- Arduino
- 컴퓨터 그래픽스
- Deque
- 수광 소자
- Array
- 자료구조
- 통계학
- queue
- directx
- 아두이노
Archives
- Today
- Total
Kim's Programming
Algorithm - reverse() 본문
워형)
1 2 | template <class BidirectionalIterator> void reverse (BidirectionalIterator first, BidirectionalIterator last); | cs |
의미)
[Iterator first, Iterator last) 사이에있는 원소들의 순서를 반전합니다.
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include<iostream> #include<algorithm> #include<vector> void Print(const std::vector<int>& target) { for (std::vector<int>::const_iterator iterPos = target.begin(); iterPos != target.cend(); iterPos++) std::cout << *iterPos << ' '; std::cout << std::endl; } void main() { std::vector<int> vector = { 1,3,5,4,3,2,6,7,9,11 }; std::cout << "Vector--->"; Print(vector); std::reverse(vector.begin(), vector.end()); std::cout << "Vector--->"; Print(vector); } | cs |
리턴값)
없음
결과)
'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글
Algorithm - rotate() (0) | 2017.07.13 |
---|---|
Algorithm - reverse_copy() (0) | 2017.07.13 |
Algorithm - unique_copy() (0) | 2017.07.13 |
Algorithm - unique() (0) | 2017.07.13 |
Algorithm - remove_copy_if() (0) | 2017.07.13 |