ReePrime China
Stack data structure

此内容来自第三方平台 (Dailymotion)。如果此视频侵犯了您的版权,请使用 立即删除 工具。

Stack data structure

3 次观看 07:16 kushagrarastogi17

描述

A stack is a linear data structure.
In this data structure, elements are added to and removed only from one end of the list, that is, top of the stack.
It provides the information in the reverse of the entry order, so it is called last-in-first-out(LIFO).
The operation of removing an entry from a stack is called a pop operation.
The operation of adding an entry to a stack is called push operation.