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
- c++
- 아두이노 소스
- 시스템프로그래밍
- 컴퓨터 그래픽스
- 수광 소자
- Array
- map
- C언어
- 아두이노
- set
- LineTracer
- 자료구조
- stl
- 아두이노 컴파일러
- Stack
- Deque
- queue
- Arduino
- arduino compiler
- priority_queue
- html
- 통계학
- 라인트레이서
- vector
- Algorithm
- list
- 운영체제
- WinAPI
- Visual Micro
- directx
Archives
- Today
- Total
Kim's Programming
Algorithm - is_permutation() 본문
STL - Algorithm/Algorithm - Non-Modifying
Algorithm - is_permutation()
Programmer. 2016. 2. 7. 20:04소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include<vector> #include<iostream> #include<algorithm> bool compare(int i, int j) { if (i == j) return true; return false; } void main() { int Array[] = { 10,20,30,40,50 }; std::vector<int> Vector = { 30,10,20,50,40}; if (std::is_permutation(Vector.begin(), Vector.end(), Array)) std::cout << "Same contents" << std::endl; else std::cout<<"not Same" << std::endl; } | cs |
내용)
is_permutation(x,y,z)함수는 iterator x와 iterator y사이의 데이터들과 z를 비교하여 같은지를 판단합니다. 순서상관없이 않에 있는 데이터 구성만 같다면 true를 리턴하며 그렇지 않다면 false를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Non-Modifying' 카테고리의 다른 글
Algorithm - search_n() (0) | 2016.02.11 |
---|---|
Algorithm - search() (0) | 2016.02.11 |
Algorithm - equal() (0) | 2016.02.07 |
Algorithm - mismatch() (0) | 2016.02.07 |
Algorithm - count_if() (0) | 2016.02.07 |