当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ set::find()用法及代码示例


C++ STL set::find() 函数

set::find() 函数是一个预定义的函数,用于检查一个元素是否属于集合,如果元素在集合容器中找到,则返回一个指向该元素的迭代器。

原型:

    set<T> st; //declaration
    set<T>::iterator it; //iterator declaration
    it=st.find( const T item); 

参数:常量T项目

返回类型:迭代器位置

用法:

该函数检查一个元素是否属于该集合。如果元素属于集合,则返回确切的迭代器位置,否则返回st.end()

例:

    For a set of integer,
    set<int> st;
    set<int>::iterator it;
    st.insert(4);
    st.insert(5);
    set content:
        4
        5

    it=st.find(5);  
    Print *it; //prints 5
    it= st.find(7) //it=st.end()

要包含的头文件:

    #include <iostream>
    #include <set>
    OR
    #include <bits/stdc++.h>

C++ 实现:

#include <bits/stdc++.h>
using namespace std;

void printSet(set<int> st){
	set<int>::iterator it;
	cout<<"Set contents are:\n";
	for(it=st.begin();it!=st.end();it++)
		cout<<*it<<" ";
	cout<<endl;
}

int main(){
	cout<<"Example of find function\n";
	set<int> st;
	set<int>::iterator it;
	cout<<"inserting 4\n";
	st.insert(4);
	cout<<"inserting 6\n";
	st.insert(6);
	cout<<"inserting 10\n";
	st.insert(10);

	printSet(st); //printing current set

	//finding element 6

	if(st.find(6)!=st.end())
		cout<<"6 is present\n";
	else
		cout<<"6 is not present\n";
	
	//finding element 9
	if(st.find(9)!=st.end())
		cout<<"9 is present\n";
	else
		cout<<"9 is not present\n";

	return 0;
}

输出

Example of find function
inserting 4
inserting 6
inserting 10
Set contents are:
4 6 10
6 is present
9 is not present


相关用法


注:本文由纯净天空筛选整理自 set::find() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。