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
- directx
- priority_queue
- Deque
- 통계학
- 라인트레이서
- queue
- stl
- Array
- 운영체제
- Arduino
- set
- C언어
- vector
- arduino compiler
- 아두이노
- 자료구조
- c++
- WinAPI
- list
- 컴퓨터 그래픽스
- map
- 아두이노 소스
- html
- 시스템프로그래밍
- 아두이노 컴파일러
- Stack
- Visual Micro
- Algorithm
Archives
- Today
- Total
Kim's Programming
Algorithm - swap() 본문
원형)
1 2 3 4 5 6 7 | //배열이 아닌경우 template <class T> void swap (T& a, T& b) noexcept (is_nothrow_move_constructible<T>::value && is_nothrow_move_assignable<T>::value); //배열의 경우 template <class T, size_t N> void swap(T (&a)[N], T (&b)[N]) noexcept (noexcept(swap(*a,*b))); | cs |
의미)
a와 b의 값을 교체합니다.
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #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> vector1 = { 1,3,5,7,9 }; std::vector<int> vector2 = { 2,4,6,8,10 }; std::cout << "Vector 1 --->"; Print(vector1); std::cout << "Vector 2 --->"; Print(vector2); std::swap (vector1, vector2); std::cout << "Vector 1 --->"; Print(vector1); std::cout << "Vector 2 --->"; Print(vector2); } | cs |
리턴값)
없음
결과)
'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글
Algorithm - iter_swap() (0) | 2017.07.12 |
---|---|
Algorithm - swap_ranges() (0) | 2017.07.12 |
Algorithm - copy_backward() (0) | 2017.07.12 |
Algorithm - copy_if() (0) | 2017.07.12 |
Algorithm - copy_n() (0) | 2017.07.11 |