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
- vector
- C언어
- 아두이노 컴파일러
- Deque
- priority_queue
- Array
- Visual Micro
- 통계학
- 컴퓨터 그래픽스
- Algorithm
- 자료구조
- 아두이노 소스
- 운영체제
- 시스템프로그래밍
- set
- stl
- Stack
- c++
- 라인트레이서
- list
- directx
- 수광 소자
- html
- Arduino
- arduino compiler
- 아두이노
- queue
- LineTracer
- WinAPI
- map
Archives
- Today
- Total
Kim's Programming
Set - emplace_hint() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include<set> #include<iostream> void print(std::set<int> Target_Set) { for (std::set<int>::iterator IterPos = Target_Set.begin(); IterPos != Target_Set.end(); ++IterPos) std::cout << *IterPos << " "; std::cout << std::endl; } void main() { std::set<int> Set = { 1,3,5,7,9,11 }; std::set<int>::iterator Iter; print(Set); Set.emplace_hint(Set.end(), 2); print(Set); Iter= Set.emplace_hint(Set.end(), 2); if (*Iter) std::cout << "Exist" << std::endl; } | cs |
내용)
emplace_hint(x,y)는 이터레이터 x가 가리키는 위치에 데이터 y를 삽입합니다. 삽입시에 같은 데이터가 있는 경우 true를 가지는 Iterator를 같은 데이터가 없는 경우 false를 가지는 Iterator를 리턴합니다.
결과)
'STL - Container > Container - Set' 카테고리의 다른 글
Set - end() (0) | 2016.01.31 |
---|---|
Set - empty() (0) | 2016.01.31 |
Set - crend() (0) | 2016.01.31 |
Set - crbegin() (0) | 2016.01.31 |
Set - count() (0) | 2016.01.31 |