Please enable JavaScript.
Coggle requires JavaScript to display documents.
STACK - Coggle Diagram
STACK
-
-
Define stack
Is a data structure that consist of a list of
Homogenous element.
In which the addition & deletion of the element
accurs only at one end (top of the stack).
Implementation of stack
1) Stack as array - fixed size stack , array item & Top
2) Stack as Linked List - dynamic size , node: data + link , head
-
Operation on stack - Stack of Tray , Stack of Book
-