관리 메뉴

Kim's Programming

Set - count() 본문

STL - Container/Container - Set

Set - count()

Programmer. 2016. 1. 31. 22:27
소스)

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 };
 
    print(Set);
    std::cout << Set.count(3<< std::endl;;
    print(Set);
}
cs

내용)

count()함수는 set 내부에 있는 데이터의 갯수를 세서 리턴합니다.

결과)



'STL - Container > Container - Set' 카테고리의 다른 글

Set - crend()  (0) 2016.01.31
Set - crbegin()  (0) 2016.01.31
Set - clear()  (0) 2016.01.31
Set - emplace()  (0) 2016.01.31
Set - cend()  (0) 2016.01.31