Skip to content

Latest commit

 

History

History

stacks

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Stacks

  • A stack is an ordered list in which insertion and deletion are done at one end, called top.
  • The last element inserted is the first one to be deleted.
  • Hence, it is called the Last in First out (LIFO) or First in Last out(FILO) list.