Stack: Difference between revisions
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
=Overview= | =Overview= | ||
A '''stack''' is a dynamic set in which the the [[Data Structures#DELETE|DELETE]] operation removes the latest inserted element. The stack has a ''last-in-first-out'', or LIFO policy. | A '''stack''' is a dynamic set in which the the [[Data Structures#DELETE|DELETE]] operation, which does not have any argument, removes the latest inserted element. The stack has a ''last-in-first-out'', or LIFO policy. |
Revision as of 01:10, 11 August 2018
Internal
Overview
A stack is a dynamic set in which the the DELETE operation, which does not have any argument, removes the latest inserted element. The stack has a last-in-first-out, or LIFO policy.