Question: Problem: Implement a stack using a singly linked list. The stack should support the following operations: push ( int x ) : Push an integer

Problem: Implement a stack using a singly linked list. The stack should support the following operations:
push(int x): Push an integer x onto the stack.
pop(): Remove and return the top element from the stack. If the stack is empty, return -1.
peek(): Return the top element of the stack without removing it. If the stack is empty, return -1.
isEmpty(): Return True if the stack is empty, otherwise return False.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!