Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 242 Bytes

File metadata and controls

7 lines (7 loc) · 242 Bytes

Stack implementation with Linked list

  • Single linked list
  • All operation will be constant time

Stack implementation with Array

  • Fixed size array
  • All four operations are in linear time
  • If array is filled, then push will be linear