Geekband-second week of part3

1.Stack

Geekband-second week of part3_第1张图片

Stack是一种先进后出(First In Last Out)的数据结构

上图可以看做是对deque的“包装”和“适配”

stack不允许遍历,故没有iterator

Geekband-second week of part3_第2张图片

2.Queue

Queue是一种先进先出(First InFirstOut)的数据结构

Geekband-second week of part3_第3张图片

上图可以看做是对deque的“包装”和“适配”

Queue不允许遍历,故没有iterator

Geekband-second week of part3_第4张图片

3.Map

Geekband-second week of part3_第5张图片

4.Multimap

Geekband-second week of part3_第6张图片

5.Set

Geekband-second week of part3_第7张图片
Geekband-second week of part3_第8张图片
Geekband-second week of part3_第9张图片
Geekband-second week of part3_第10张图片

6.STL整体结构(包含6大组件)

<1>容器(Containers):各种数据结构,如Vector,List,Deque,Set,Map,用来存放数据,STL容器是一种Class Template,就体积而言,这一部分很像冰山载海面的比率。

<2>算法(Algorithms):各种常用算法如Sort,Search,Copy,Erase,从实现的角度来看,STL算法是一种Function Templates

<3>迭代器(Iterators):扮演容器与算法之间的胶合剂,是所谓的“泛型指针”,共有五种类型,以及其它衍生变化,从实现的角度来看,迭代器是一种将:Operators*,Operator->,Operator++,Operator--等相关操作予以重载的Class Template。所有STL容器都附带有自己专属的迭代器——是的,只有容器设计者才知道如何遍历自己的元素,原生指针(Native pointer)也是一种迭代器。

<4>仿函数(Functors): 行为类似函数,可作为算法的某种策略(Policy),从实现的角度来看,仿函数是一种重载了Operator()ClassClass Template。一般函数指针可视为狭义的仿函数。

<5>配接器(适配器)(Adapters):一种用来修饰容器(Containers)或仿函数(Functors)或迭代器(Iterators)接口的东西,例如:STL提供的QueueStack,虽然看似容器,其实只能算是一种容器配接器,因为 它们的底部完全借助Deque,所有操作有底层的Deque供应。改变Functor接口者,称为Function Adapter;改变Container接口者,称为Container Adapter;改变Iterator接口者,称为Iterator Adapter。配接器的实现技术很难一言蔽之,必须逐一分析。

<6>分配器(Allocators):负责空间配置与管理,从实现的角度来看,配置器是一个实现了动态空间配置、空间管理、空间释放的Class Template

Geekband-second week of part3_第11张图片

7.仿函数

Geekband-second week of part3_第12张图片
Geekband-second week of part3_第13张图片
Geekband-second week of part3_第14张图片
Geekband-second week of part3_第15张图片

binder**和bind**功能对应。只是binder**是类绑定器,bind**为全局函数绑定器而已。

mem_fun_ref的作用和用法跟mem_fun一样,唯一的不同就是:当容器中存放的是对象实体的时候用mem_fun_ref,当容器中存放的是对象的指针的时候用mem_fun

Geekband-second week of part3_第16张图片
Geekband-second week of part3_第17张图片

8.值得注意的问题:

Geekband-second week of part3_第18张图片
Geekband-second week of part3_第19张图片
Geekband-second week of part3_第20张图片
Geekband-second week of part3_第21张图片

9.泛型算法之非变易算法

Geekband-second week of part3_第22张图片

你可能感兴趣的:(Geekband-second week of part3)