我是靠谱客的博主 畅快菠萝,最近开发中收集的这篇文章主要介绍【数据结构】STL——set容器,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

set为已经排好序的集合,且不允许有相同元素,最适合快速查找操作

使用时需要添加头文件#include <set>

其insert函数原型如下:pair<iterator, bool> insert(const T &val);设返回值为对象x,当插入对象不存在时,则插入成功,x.second = true;当插入对象已经存在时,插入失败,x.second = false;

测试代码如下:

#include <iostream>
#include <set>
using namespace std;
int main()
{
	typedef set<int>::iterator IT;
	int a[5] = {3, 4, 6, 1, 2};
	set<int> st(a, a+5);			//创建set对象
	pair<IT, bool> result;
	result = st.insert(5);

	if(result.second)
		cout<<*result.first<<" inserted"<<endl;
	if(st.insert(5).second)
		cout<<*result.first<<endl;
	else
		cout<<*result.first<<" already exists"<<endl;

	pair<IT, IT> bounds = st.equal_range(4);
	cout<<*bounds.first<<","<<*bounds.second;
	return 0;
}


最后

以上就是畅快菠萝为你收集整理的【数据结构】STL——set容器的全部内容,希望文章能够帮你解决【数据结构】STL——set容器所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(74)

评论列表共有 0 条评论

立即
投稿
返回
顶部