技术文章
|
操作系统
编程语言
Web服务器/前端
数据库
NOSQL
网络技术
|
IP地址数字互转
|
扩展阅读
C++ Double Ended Queues 成员 back():returns the last element
C++ Double Ended Queues 成员 front():returns the first element
C++ Double Ended Queues 成员 erase():removes an element
C++ Double Ended Queues 成员 swap():swap one dequeue with another
C++ Double Ended Queues 成员 pop_front():removes the first element
C++ Double Ended Queues 成员 pop_back():removes the last element
C++ Double Ended Queues 成员 empty():true if the dequeue is empty
C++ Double Ended Queues 成员 begin():returns an iterator to the first element
C++ Double Ended Queues 成员 get_allocator():returns the dequeue's allocator
C++ Double Ended Queues 成员 resize():change the size of the dequeue
C++ Double Ended Queues 成员 assign():set the values of the dequeue
C++ Double Ended Queues 成员 size():return the number of elements in the dequeue
C++ Double Ended Queues 成员 end():returns an iterator to the end of the queue
C++ Double Ended Queues 成员 insert():insert elements into the dequeue
C++ Double Ended Queues 成员 rbegin():returns a reverse iterator to the end of the dequeue
C++ Double Ended Queues 成员 rend():returns a reverse iterator to the beginning of the dequeue
C++ Double Ended Queues 成员 max_size():returns the maximum elements that the dequeue can hold
C++ Double Ended Queues 成员 push_front():add an element to the front of the dequeue
C++ Double Ended Queues 成员 push_back():add an element to the end of the dequeue
当前位置: 编程语言>
c/c++
C++ Queues(队列) 成员 front():返回第一个元素
发布时间:2014-1-19
本文导语:
C++ Queues(队列) 成员 front():返回第一个元素 front 语法: type &front(); front()返回队列第一个元素的引用。
c++
queues(
队列
) 成员 front():返回
第一个
元素
front
语法
:
type &front;();
front()返回队列第一个元素的
引用
。
您可能感兴趣的文章:
C++ Priority Queues(优先队列) 成员 pop():删除第一个元素
C++ Double Ended Queues 成员 end():returns an iterator to the end of the queue
iis7站长之家
C++ Queues(队列) 成员 pop():删除第一个元素
C++ Queues(队列) 成员 size():返回队列中元素的个数
C++ Queues(队列) 成员 back():返回最后一个元素
C++ Double Ended Queues(双向队列) 成员 Operators:比较和赋值双向队列
C++ Double Ended Queues(双向队列) 成员 erase():删除一个元素
C++ Priority Queues(优先队列) 成员 empty():如果优先队列为空,则返回真
C++ Double Ended Queues(双向队列) 成员 at():返回指定的元素
C++ Double Ended Queues 成员 clear():remove all elements
C++ Priority Queues(优先队列) 成员 push():加入一个元素
C++ Queues(队列) 成员 empty():如果队列空则返回真
C++ Double Ended Queues(双向队列) 成员 back():返回最后一个元素
C++ Double Ended Queues(双向队列) 成员 clear():删除所有元素
C++ Double Ended Queues(双向队列) 成员 end():返回指向尾部的迭代器
C++ Double Ended Queues(双向队列) 成员 front():返回第一个元素
C++ Double Ended Queues(双向队列) 成员 resize():改变双向队列的大小
C++ Double Ended Queues(双向队列) 成员 empty():返回真如果双向队列为空
C++ Double Ended Queues 成员 at():returns a specific element