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
- 통계학
- set
- priority_queue
- Arduino
- Deque
- Array
- 시스템프로그래밍
- Stack
- 수광 소자
- map
- WinAPI
- 라인트레이서
- queue
- LineTracer
- html
- 아두이노 컴파일러
- C언어
- stl
- 아두이노 소스
- 아두이노
- directx
- list
- Visual Micro
- arduino compiler
- c++
- 컴퓨터 그래픽스
- Algorithm
- 운영체제
Archives
- Today
- Total
Kim's Programming
Set - insert() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #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> Set2 = { 2,4,6,8,10 }; print(Set); Set.insert(3); print(Set); Set.insert(Set2.begin(),Set2.end()); print(Set); } | cs |
내용)
insert()함수는 파라메터에 따라 다른 기능을 합니다.
- insert(x)
데이터 x를 삽입합니다. - insert(x,y)
이터레이터 x 가 가리키는 지점부터 이터레이터 y가 가리키는 지점까지의 데이터들을 모두 삽입합니다.
결과)
'STL - Container > Container - Set' 카테고리의 다른 글
Set - lower_bound() (2) | 2016.02.01 |
---|---|
Set - key_comp() (0) | 2016.01.31 |
Set - find() (0) | 2016.01.31 |
Set - erase() (0) | 2016.01.31 |
Set - equal_range() (0) | 2016.01.31 |