首页>>科技 >>内容

什么是确定器物绝对年代的可靠依据,什么是queue

发布时间:2023-08-31 10:58:10编辑:温柔的背包来源:

什么是确定器物绝对年代的可靠依据,什么是queue

很多朋友对什么是确定器物绝对年代的可靠依据,什么是queue不是很了解,每日小编刚好整理了这方面的知识,今天就来带大家一探究竟。

一、什么是队列?队列容器,也叫队列容器,简单的用deque容器修饰一下,就变成了另一个容器。二、容器特征1。双开容器其实这个容器模拟的是队列存储结构,只能从尾部插入元素,从头部删除元素。(先进先出,类似排队)2。不支持迭代器,只能通过固定函数进行插入、访问和删除。

三、基本函数实现1、构造函数queue();创建一个空队列2。添加、获取和删除元素的void push(const T x);将元素引用front()添加到队列的末尾;获取队列头元素引用back();获取队列结束元素void pop();删除队列头元素5。判断函数bool empty()const;判断容器中是否有元素,如果没有,返回true;否则,它返回false。

6. The size function int size () const; Returns the number of elements in the queue. 7. void exchange of other functions (queue); Exchange data between two queues of the same type四、 Basic usage # include # includeusing the namespace stdint main () {queueq; for(int I=0; i 10I){ q . push(I); } cout q . front()' ' q . back()endl; And (! q . empty()){ cout q . front()' ' q . pop(); } cout ' \ \ n size:' q . size()endl; Returns 0; }

以上知识分享希望能够帮助到大家!