Back to course home
0% completed
Vote For New Content
On this page
- 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)
- Implementing Stack Using an Array in Java
Code
- Implementing Stack Using a Linked List in Java
Code
- Key Takeaways