stl 中 容器 set 类插入,删除,遍历,其中存储的元素为基础类型 int (1)

集合类型的元素级别简单操作测试

// stlset.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "set"

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	//定义存储类型是基本类型int的集合
	set<int> myset;
	
	//批量插入0--9
	pair<set<int>::iterator, bool> Insert_Pair;
	for(int i=0; i<10; i++)
	{
		Insert_Pair = myset.insert(i);
		printf("insert elem=%d into set result=%d\n", i, Insert_Pair.second);
	}

	printf("********************************\n");

	//遍历set
	typedef set<int>::iterator ITERATOR;
	ITERATOR LI;
	for(LI = myset.begin(); LI != myset.end(); LI++)
	{
		printf("output elem=%d\n", (*LI));
	}

	printf("********************************\n");
	//删除其中一个元素方法一:
	for(LI = myset.begin(); LI != myset.end(); LI++)
	{
		if (*LI == 5)
		{
			myset.erase(LI);
			break;
		}
	}

	//遍历set
	for(LI = myset.begin(); LI != myset.end(); LI++)
	{
		printf("output elem=%d\n", (*LI));
	}

	printf("********************************\n");
	//删除其中一个元素方法二:
	LI = myset.find(4);
	if (LI != myset.end())
	{
		myset.erase(LI);
	}
	//遍历set
	for(LI = myset.begin(); LI != myset.end(); LI++)
	{
		printf("output elem=%d\n", (*LI));
	}


	getchar();

	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值