Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 996 Bytes

File metadata and controls

16 lines (12 loc) · 996 Bytes

Stack

Stack is a LIFO (last-in-first-out) data structure. Which means for one element, every element added after this element must be removed before this element can be removed. (Think tissues in tissue box, we need to get the tissue on the top first).

Implement

  • my implement.
  • Time complexity: push and pop both O(1).
  • We can use JavaScript array to simulate stack, use push to push and pop to pop.
  • This only simulate the 'behavior' (FIFO), JS array is in fact an object, which is just like a hashmap. The time complexity of pop and push are both O(n), but sometimes need to resize the hashmap, which means O(n).

Questions

Resource