A memory stack is a data location where the information is stored and arranged according to LIFO (last in, first out) method. The operations necessary for the stack to function are: push (insert data into a stack), pop (remove data), peek (request the location of the last data item in the stack to find out what item will be pushed the last), search (request the location of any data item)
Comments
Leave a comment