<Standard Template Library>标准模板库专项复习总结(一)
看了看博客园的申请时间也一年多了...想想自己一年多以来一直处于各种划水状态,现在又要面临ACM的冲击...
还是要抓紧时间赶紧复习一下了- -毕竟校园新生赛还是有奖金的..
1.栈
先进后出(LIFO)表
头文件:#include<stack>
变量的定义:stack<TYPE>StackName
成员函数:
bool empty() 栈为空返回true,否则返回false
void pop() 删除栈顶元素
void push(const TYPE &val) 进栈
size_type size() 返回栈的数目
TYPE& top() 查看栈首
2.动态数组
头文件:#include<vector>
变量的定义:vector<TYPE>vectorName
成员函数:
TYPE& size() 返回数组的数目
bool empty() 数组为空返回true,否则返回false
void clear() 清空数组
* begin() 返回第一个数据的地址
* end() 返回最后一个数据的地址
void pop_back() 删除最后一个数据
* insert(a,b) 在a位置插入b
void insert(a,n,b) 在a位置插入n个b
void insert(a,beg,end) 在a位置插入beg到end之间的数据
void swep(vector) 互换两个vector
3.映射
头文件:#include<map>
变量的定义:map<TYPE,TYPE>mapName
map<key,elem> 一个map,以less<>为排序准则 map<key,elem,op> 一个map,以op为排序准则
另外需要定义迭代器(iterator)
map<string,float>::iterator pos;
类似于指针,解释一下就是:
当迭代器pos指向map中的某个元素,表达式pos->first获得该元素的key,表达式pos->second获得该元素的value
举个例子:(摘自https://blog.csdn.net/shawn_hou/article/details/38035577)
#include <map>
#include <string>
#include <iostream>
using namespace std;
int main()
{
map<int, string> mapStudent;
mapStudent.insert(pair<int, string>(, "student_one"));
mapStudent.insert(pair<int, string>(, "student_two"));
mapStudent.insert(pair<int, string>(, "student_three"));
map<int, string>::iterator iter;
for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
cout<<iter->first<<' '<<iter->second<<endl;
}
成员函数:
iterator begin() 返回指向第一个元素的迭代器
iterator end() 返回指向最后一个元素的迭代器
void clear() 清空map
bool empty() 返回是否map为空
void insert() 插入
TYPE& size() 返回map大小
*也可以直接使用pair类型输入
#include<cstdio>
#include<iostream>
#include<cstring>
#include<map>
#include<vector>
#include<queue>
#define MAXN
using namespace std;
int n,x,y;
int main(){
ios::sync_with_stdio(false);
map<int,int>m;
m.insert(pair<int,int>(,));
cin>>n;
for(register int i=;i<=n;i++){
cin>>x>>y;
pair<int,int> p (x,y);
m.insert(p);
} cout<<endl;
for(register map<int,int>::iterator i=m.begin();i!=m.end();i++){
pair<int,int>it=*i;
cout<<it.first<<" "<<it.second<<endl;
}
return ;
}
原文:https://blog.csdn.net/NOIAu/article/details/72923307
------对于没有数据结构基础的小白,比如不知道什么是迭代器什么是pair可以自行百度
总而言之,map=pair+set
#include<cstdio>
#include<iostream>
#include<map>
using namespace std;
int main(){
map<string,float> c;
c.insert(make_pair("Cafe",7.75));
c.insert(make_pair("Banana",1.72));
c["Wine"]=15.66;
map<string,float>::iterator pos;
for(pos=c.begin();pos!=c.end();pos++){
cout<<pos->first<<" "<<pos->second<<endl;
}
return ;
}
<Standard Template Library>标准模板库专项复习总结(一)的更多相关文章
- <Standard Template Library>标准模板库专项复习总结(二)
4.队列 先进先出(FIFO)表 头文件:#include<queue> 变量的定义:queue<TYPE>queueName 成员函数: bool empty() 空队列返回 ...
- C++ 标准模板库(STL)
C++ 标准模板库(STL)C++ STL (Standard Template Library标准模板库) 是通用类模板和算法的集合,它提供给程序员一些标准的数据结构的实现如 queues(队列), ...
- link-1-STL 标准模板库
STL(Standard Template Library,标准模版库)是C++语⾔言标准中的重要组成部分.STL以模板类和模版函数的形式为程序员提供了了各种数据结构和算法的实现,程序员吐过能够充分的 ...
- C++标准模板库Stand Template Library(STL)简介与STL string类
参考<21天学通C++>第15和16章节,在对宏和模板学习之后,开启对C++实现的标准模板类STL进行简介,同时介绍简单的string类.虽然前面对于vector.deque.list等进 ...
- STL标准模板库(简介)
标准模板库(STL,Standard Template Library)是C++标准库的重要组成部分,包含了诸多在计算机科学领域里所常见的基本数据结构和基本算法,为广大C++程序员提供了一个可扩展的应 ...
- 【转】C++标准库和标准模板库
C++强大的功能来源于其丰富的类库及库函数资源.C++标准库的内容总共在50个标准头文件中定义.在C++开发中,要尽可能地利用标准库完成.这样做的直接好处包括:(1)成本:已经作为标准提供,何苦再花费 ...
- C++ Standard Template Library STL(undone)
目录 . C++标准模版库(Standard Template Library STL) . C++ STL容器 . C++ STL 顺序性容器 . C++ STL 关联式容器 . C++ STL 容 ...
- 【c++】标准模板库STL入门简介与常见用法
一.STL简介 1.什么是STL STL(Standard Template Library)标准模板库,主要由容器.迭代器.算法.函数对象.内存分配器和适配器六大部分组成.STL已是标准C++的一部 ...
- STL 简介,标准模板库
这篇文章是关于C++语言的一个新的扩展--标准模板库的(Standard Template Library),也叫STL. 当我第一次打算写一篇关于STL的文章的时候,我不得不承认我当时低估了这个话 ...
随机推荐
- springboot thymeleaf【转】【补】
thymeleaf模板 https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html 1.引入thymeleaf依赖 <!-- ...
- Java 并发工具箱之concurrent包
概述 java.util.concurrent 包是专为 Java并发编程而设计的包.包下的所有类可以分为如下几大类: locks部分:显式锁(互斥锁和速写锁)相关: atomic部分:原子变量类相关 ...
- JavaScript中常用的几种类型检测方法
javascript中类型检测方法有很多: typeof instanceof Object.prototype.toString constructor duck type 1.typeof 最常见 ...
- 干货 | 解读MySQL 8.0新特性:Skip Scan Range
MySQL从8.0.13版本开始支持一种新的range scan方式,称为Loose Skip Scan.该特性由Facebook贡献.我们知道在之前的版本中,如果要使用到索引进行扫描,条件必须满足索 ...
- Docker容器中安装新的程序
在容器里面安装一个简单的程序(ping). 之前下载的是ubuntu的镜像,则可以使用ubuntu的apt-get命令来安装ping程序:apt-get install -y ping. $docke ...
- 《js高级程序设计》6.1.1-6.1.3——数据属性、访问器属性
数据属性:该属性包含了一个数据值的位置,它包含了4个描述行为的特性:1. [[Configurable]]:表示是否能通过delete删除属性从而重新定义属性,能否修改属性的特性,能否把属性修改为访问 ...
- hdu 1950 最长上升子序列(lis) nlogn算法【dp】
这个博客说的已经很好了.http://blog.csdn.net/shuangde800/article/details/7474903 简单记录一下自己学的: 问题就是求一个数列最长上升子序列的长度 ...
- du,df区别
1.记住命令 du:disk Usage -h, --human-readable print sizes in human readable format df:disk free 2.区别 du ...
- POJ-3615_Cow Hurdles
Cow Hurdles Time Limit: 1000MS Memory Limit: 65536K Description Farmer John wants the cows to prepar ...
- oracle计算记录条数
和一般的观点相反, count(*) 比count(1)稍快 , 当然如果可以通过索引检索,对索引列的计数仍旧是最快的. 例如 COUNT(EMPNO)