[
next
] [
prev
] [
prev-tail
] [
tail
] [
up
]
1.6
Stack
In C++ STL , stack<template> is container adaptor, specifically designed to operate in a LIFO context. In C#: Stack myStack = new Stack();
Stack is last-in first-out, and queue is frist-in and first-out
1.6.1
Application of Stack
[
next
] [
prev
] [
prev-tail
] [
front
] [
up
]