欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

C++ STL入门教程(6) set(集合)的使用方法

时间:2021-05-26 08:12:43|栏目:C代码|点击:

一、简介

集合(Set)是一种包含已排序对象的关联容器,不允许有重复元素。

二、完整程序代码

/*请务必运行以下程序后对照阅读*/ 
 
#include <set> 
#include <iostream> 
using namespace std; 
 
int main() 
{ 
  ///1. 初始化 
  set<int> num; 
  set<int>::iterator iter; 
  cout << num.max_size() << endl;///set容纳上限 
  cout << endl; 
 
  ///2. 添加元素 
  for (int i = 0; i < 10; i++) 
    num.insert(i); 
  cout << num.size() << endl; 
  cout << endl; 
 
  ///3. 遍历 
  ///不同于map,set容器不提供下标操作符 
  for (iter = num.begin(); iter != num.end(); iter++) 
    cout << *iter << " " ; 
  cout << endl; 
  cout << endl; 
 
  ///4. 查询 
  iter = num.find(1); 
  if (iter != num.end()) 
    cout << *iter << endl; 
  else 
    cout << -1 << endl; 
  iter = num.find(99); 
  if (iter != num.end()) 
    cout << *iter << endl; 
  else 
    cout << -1 << endl; 
  cout << endl; 
 
  ///5. 删除 
  iter = num.find(1); 
  num.erase(iter); 
  cout << num.size() << endl; 
  for (iter = num.begin(); iter != num.end(); iter++) 
    cout << *iter << " " ; 
  cout << endl; 
  cout << endl; 
 
  ///6. 判空与清空 
  if (!num.empty()) 
    num.clear(); 
} 

三、补充

map容器是键-值对的集合,好比以人名为键的地址和电话号码。相反地,set容器只是单纯的键的集合。当我们想知道某位用户是否存在时,使用set容器是最合适的。

参考网址:http://www.cplusplus.com/reference/set/set/

上一篇:C语言控制台绘制曲线的实现代码

栏    目:C代码

下一篇:QString使用正则操作的接口实现

本文标题:C++ STL入门教程(6) set(集合)的使用方法

本文地址:http://www.codeinn.net/misctech/128950.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有