Difference between revisions of "cpp/container/stack"
From cppreference.com
m (Text replace - "container/tdcl" to "container/dcl") |
m (Text replace - "/sidebar" to "/navbar") |
||
Line 1: | Line 1: | ||
{{cpp/title|stack}} | {{cpp/title|stack}} | ||
− | {{cpp/container/stack/ | + | {{cpp/container/stack/navbar}} |
{{ddcl | header=stack | | {{ddcl | header=stack | | ||
template< | template< |
Revision as of 12:29, 15 June 2012
Defined in header <stack>
|
||
template< class T, |
||
The std::stack
class is a container adapter that gives the programmer the functionality of a stack - specifically, a FILO (first-in, last-out) data structure.
Contents |