Grokking 75: Top Coding Interview Questions
Ask Author
Back to course home

0% completed

Vote For New Content

On this page

  1. Stack Operations

1.1 Push Operation (Adding an Element to the Stack)

1.2 Pop Operation (Removing the Top Element)

1.3 Peek (Top) Operation (Viewing the Top Element Without Removing It)

1.4 IsEmpty Operation (Checking If the Stack is Empty)

  1. Implementing Stack Using an Array in Java

Code

  1. Implementing Stack Using a Linked List in Java

Code

  1. Key Takeaways