Explain Stack
It is a linear data structure or ordered collection of elements where the elements are processed in last in first out manner(LIFO). In stack insertion and deletions are made at one end i.e top Stack can be implemented by using array or linked list Operations on stacks. Special terminology is used for two basic operations […]


