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 |
31 |
Tags
- 통계학
- 시스템프로그래밍
- list
- 운영체제
- html
- LineTracer
- WinAPI
- set
- stl
- c++
- Array
- arduino compiler
- map
- Visual Micro
- C언어
- directx
- 아두이노 소스
- priority_queue
- Deque
- 아두이노
- 자료구조
- Stack
- 라인트레이서
- vector
- 아두이노 컴파일러
- queue
- Arduino
- 컴퓨터 그래픽스
- Algorithm
- 수광 소자
Archives
- Today
- Total
목록STL - Algorithm/Algorithm - Non-Modifying (17)
Kim's Programming
소스) 123456789101112131415161718192021222324252627282930313233#include#include#include bool find_first(int i,int j){ if (i == j) return true; return false;} void main(){ std::vector Vector = { 1,3,5,7,9,11,13,15 }; std::vector::iterator Iter; std::vector::iterator Iter2; int Array[] = { 3,5,7 }; Iter = std::find_first_of(Vector.begin(), Vector.end(), Array, Array + 3); if (Iter != Vector.end()) s..
STL - Algorithm/Algorithm - Non-Modifying
2016. 2. 7. 03:00