码迷,mamicode.com
首页 > 其他好文 > 详细

模板:Set类

时间:2014-11-13 18:17:30      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   文件   div   log   bs   as   

头文件:

#include <set>

 

定义:

Set<string> set1;

 

添加:

set1.insert("the");

 

查询/获取元素

set1.find(1); // retrns iterator 

set1.count(1); // returns number


if(set1.find(1) != set1.end())

 

模板:Set类

标签:style   blog   color   sp   文件   div   log   bs   as   

原文地址:http://www.cnblogs.com/mobileliker/p/4095314.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!