C Tutorial/Data Structure/Stack

Материал из C\C++ эксперт
Версия от 13:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

STACKS

  1. A stack is a list of elements with insertions and deletions at one end.
  2. A stack data structure has the LIFO (last in first out) property.

14.2.Stack 14.2.1. STACKS 14.2.2. <A href="/Tutorial/C/0260__Data-Structure/ArrayImplementationofaStack.htm">Array Implementation of a Stack</a>