일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Deque
- vector
- Array
- 아두이노 컴파일러
- directx
- 아두이노
- Algorithm
- 수광 소자
- Arduino
- stl
- 컴퓨터 그래픽스
- 통계학
- priority_queue
- set
- Visual Micro
- 운영체제
- queue
- 시스템프로그래밍
- map
- LineTracer
- 아두이노 소스
- c++
- list
- WinAPI
- arduino compiler
- C언어
- 라인트레이서
- 자료구조
- Stack
- html
- Today
- Total
목록전체 글 (545)
Kim's Programming
원형) 123template ForwardIterator2 swap_ranges (ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2);cs 의미) [Iterator first, Iterator) 사이의 데이터들과 Iterator first2가 가리키는 시점부터 시작하는 각각의 데이터들과 교체합니다. 소스) 12345678910111213141516171819202122#include#include#include void Print(const std::vector& target){ for (std::vector::const_iterator iterPos = target.begin(); iterPos != target.cend(..
원형) 1234567//배열이 아닌경우template void swap (T& a, T& b) noexcept (is_nothrow_move_constructible::value && is_nothrow_move_assignable::value); //배열의 경우template void swap(T (&a)[N], T (&b)[N]) noexcept (noexcept(swap(*a,*b)));Colored by Color Scriptercs 의미) a와 b의 값을 교체합니다. 소스) 12345678910111213141516171819202122#include#include#include void Print(const std::vector& target){ for (std::vector::const_it..
원형) 12345//기본형template BidirectionalIterator2 copy_backward (BidirectionalIterator1 first, BidirectionalIterator1 last, BidirectionalIterator2 result);cs 의미) [Iterator first, Iterator last) 사이에 있는 데이터들을 Iterator result에 뒤에서부터 역순으로 복사합니다. 소스) 12345678910111213141516171819202122232425#include#include#include void Print(const std::vector& target){ for (std::vector::const_iterator iterPos = target.b..
원형) 1234//기본형template OutputIterator copy_if (InputIterator first, InputIterator last, OutputIterator result, UnaryPredicate pred);cs 의미) [Iterator first, Iterator last)사이에 데이터 들에 대해서 pred함수로 true를 리턴하는 값들에 대해서 Iterator result가 가리키는 위치부터 복사합니다. 소스) 12345678910111213141516171819202122232425#include#include#include void Print(const std::vector& target){ for (std::vector::const_iterator iterPos = t..
원형) 123//기본형template OutputIterator copy_n (InputIterator first, Size n, OutputIterator result);cs 의미) Iterator first부터 n개의 원소를 Iterator result위치 부터 복사합니다. 소스) 1234567891011121314151617181920#include#include#include void Print(const std::vector& target){ for (std::vector::const_iterator iterPos = target.begin(); iterPos != target.cend(); iterPos++) std::cout
원형) 123//기본형template OutputIterator copy (InputIterator first, InputIterator last, OutputIterator result);cs 의미) [Iterator first, Iterator last)사이에 있는 데이터들을 Iterator result가 가리키는 위치부터 복사를 합니다. 소스) 123456789101112131415161718192021#include#include#include void Print(const std::vector& target){ for (std::vector::const_iterator iterPos = target.begin(); iterPos != target.cend(); iterPos++) std::cout
원형) 123template ForwardIterator partition_point (ForwardIterator first, ForwardIterator last, UnaryPredicate pred);cs
원형) 123456template pair partition_copy (InputIterator first, InputIterator last, OutputIterator1 result_true, OutputIterator2 result_false, UnaryPredicate pred);Colored by Color Scriptercs 의미) [Iterator first, Iterator last)사이에 있는 데이터들 중에 pred 함수로 true를 리턴하는 값은 Iterator result_true가 가리키는 위치부터 복사하고 false를 리턴하는 값은 Iterator result_false가 가리키는 위치부터 복사합니다. 소스) 1234567891011121314151617181920212223242..