일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Arduino
- map
- C언어
- queue
- LineTracer
- html
- 운영체제
- arduino compiler
- 통계학
- 컴퓨터 그래픽스
- WinAPI
- list
- c++
- priority_queue
- directx
- vector
- Visual Micro
- stl
- 시스템프로그래밍
- Deque
- Array
- Algorithm
- Stack
- 아두이노 컴파일러
- 라인트레이서
- 아두이노 소스
- 수광 소자
- set
- 자료구조
- 아두이노
- Today
- Total
목록STL - Algorithm/Algorithm - Other (3)
Kim's Programming
원형) 123456789//기본형template bool next_permutation (BidirectionalIterator first, BidirectionalIterator last); //사용자 정의형template bool next_permutation (BidirectionalIterator first, BidirectionalIterator last, Compare comp);cs 의미) Iterator first와 iterator last 사이에 있는 데이터 들이 내림차순으로 정렬하되 정렬이 되어있지 않는 데이터인 경우 삽입정렬과 같은 방식으로 정렬을 하되 한번의 비교만 하여 정렬시킵니다. 정렬이 완료 된 경우에 true를 리턴합니다. 소스) 1234567891011121314151617..
원형) 123456789//기본형template bool next_permutation (BidirectionalIterator first, BidirectionalIterator last); //사용자 정의형template bool next_permutation (BidirectionalIterator first, BidirectionalIterator last, Compare comp);cs 의미) Iterator first와 iterator last 사이에 있는 데이터 들이 오름차순으로 정렬하되 정렬이 되어있지 않는 데이터인 경우 삽입정렬과 같은 방식으로 정렬을 하되 한번의 비교만 하여 정렬시킵니다. 정렬이 완료 된 경우에 true를 리턴합니다. 소스) 1234567891011121314151617..
원형) 12345678910//기본형template bool lexicographical_compare(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2); //사용자 정의형template bool lexicographical_compare(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, Compare comp);Colored by Color Scriptercs 의미) first1(포함)부터 last1 바로 앞까지와 first2(포함)부터 last2 비교하여 first2~last2사이의..