May 2012
Intermediate to advanced
768 pages
14h 39m
English
The Standard Template Library (STL) features containers that adapt others to simulate stack and queue behavior. Such containers that internally use another and present a distinct behavior are called adaptive containers.
In this lesson, you learn
• The behavioral characteristics of stacks and queues
• Using the STL stack
• Using the STL queue
• Using the STL priority_queue
Stacks and queues are quite like arrays or lists but present a restriction on how elements are inserted, accessed, and removed. Their behavioral characteristics are decided exactly by the placement of elements on insertion or the position of the element that can be erased from ...
Read now
Unlock full access