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
- priority_queue
- WinAPI
- html
- map
- Stack
- 아두이노
- arduino compiler
- Arduino
- stl
- 운영체제
- 자료구조
- 시스템프로그래밍
- 컴퓨터 그래픽스
- 라인트레이서
- C언어
- 아두이노 컴파일러
- queue
- 아두이노 소스
- Algorithm
- Visual Micro
- LineTracer
- Array
- set
- c++
- list
- directx
- 통계학
- 수광 소자
- Deque
Archives
- Today
- Total
Kim's Programming
Set - equal_range() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #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, std::set<int>::iterator> Pair = Set.equal_range(3); print(Set); std::cout << *Pair.first << " " << *Pair.second << std::endl; print(Set); } | cs |
내용)
equal_range(x)함수는 pair형으로 리턴을 하며 first로 lower_bound(x)를 second로 upper_bound(x)를 가진 pair를 리턴합니다.
결과)
'STL - Container > Container - Set' 카테고리의 다른 글
Set - find() (0) | 2016.01.31 |
---|---|
Set - erase() (0) | 2016.01.31 |
Set - end() (0) | 2016.01.31 |
Set - empty() (0) | 2016.01.31 |
Set - emplace_hint() (2) | 2016.01.31 |