STL
明天去哪
博观而约取,厚积而薄发.每天坚持写代码
展开
-
hdu 4989 Summary三种方法
#include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long LL; const int MAX=0xfffffff; LL a[110]; vectorb原创 2014-09-08 21:40:25 · 570 阅读 · 0 评论 -
ACM c++ set集合基本操作
//创建set对象,共5种方式,提示如果比较函数对象及内存分配器未出现,即表示采用的是系统默认方式 (1)set s1; //创建空的set对象,元素类型为int, (2)set s2( strLess); //创建空的set对象,元素类型char*,比较函数对象(即排序准则)为自定义strLess (3)set s3(s1); //利用set对象s1,拷贝生成set对象s2原创 2014-08-26 22:21:36 · 1071 阅读 · 0 评论 -
ACM c++ map容器基本操作
map是一类关联式容器,它是模板类。map容器提供一个键值对容器,map与multimap差别仅仅在于multiple允许一个键对应多个值 //map的定义 (1)mapm; (2)typedef map MAP; MAP m; //插入元素 (1)m.insert(pair("c",1)); (2)m["c"]=1; (3)m.insert(make_pa原创 2014-08-26 22:51:44 · 1493 阅读 · 0 评论