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
- stl
- 아두이노
- Array
- 라인트레이서
- set
- 통계학
- 아두이노 소스
- arduino compiler
- C언어
- 시스템프로그래밍
- Visual Micro
- Algorithm
- 수광 소자
- vector
- c++
- LineTracer
- Arduino
- WinAPI
- 운영체제
- 컴퓨터 그래픽스
- html
- list
- Deque
- 자료구조
- directx
- priority_queue
- queue
- Stack
- map
- 아두이노 컴파일러
Archives
- Today
- Total
Kim's Programming
Set - emplace() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #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::pair<std::set<int>::iterator,bool> Pair; print(Set); Set.emplace(15); print(Set); Pair = Set.emplace(15); if (!Pair.second) std::cout << "Current value --> " << *Pair.first << " status " << Pair.second << std::endl; } | cs |
내용)
emplace()함수는 set에 데이터를 삽입합니다. 중복값이 있는 경우엔 first로 삽입하려는 값 second로 값이 있으면 false 없으면 true를 가지는 pair를 리턴합니다.
결과)
'STL - Container > Container - Set' 카테고리의 다른 글
Set - count() (0) | 2016.01.31 |
---|---|
Set - clear() (0) | 2016.01.31 |
Set - cend() (0) | 2016.01.31 |
Set - cbegin() (0) | 2016.01.31 |
Set - begin() (0) | 2016.01.31 |