C++知识记录(2)


这里面的代码需要手动粘一下看下:https://blog.csdn.net/Augenstern_QXL/article/details/117253848

容器的deque

存储形式
image

stack容器

堆栈
image

set容器与multiset

  • set不可以插入重复数据,而multiset可以
  • set插入数据的同时会返回插入结果,表示插入是否成功
  • multiset不会检测数据,因此可以插入重复数据
    有序,且元素唯一
    image
    image

仿函数

image
image
image

pair对组

image

谓词

返回bool类型的仿函数称为谓词。有一元和二元的区分。
image
image

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/278983.html

(0)
上一篇 2022年8月5日
下一篇 2022年8月5日

相关推荐

发表回复

登录后才能评论