Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

Stacks in C++

Share this post!
 Vote this!

Stack is an ordered group of homogeneous items. —Items are added to and removed from the top of the stack (the most recently added items are at the top of the stack). —The last item to be added is the first to be removed (LIFO: Last In, First Out). A stack is an ordered collection of items into which new items may be inserted and from which items may be deleted at one end called the TOP of the stack.
—The implementation of stack provides for the insertion and deletion of items (at run time), so that a stack is a dynamic, constantly changing object.—  more...

0 comments:

Post a Comment