Question
A Stack is a last-in-first-out data structure. The class MyStack, outlined below, uses a LinkedList to manage a collection of String values as a stack.
A Stack is a last-in-first-out data structure. The class MyStack, outlined below, uses a LinkedList to manage a collection of String values as a stack. The public methods of this class are given and your task is to write the code for each of these. The description of the task for each method is described as a comment in the code below.
public class MyStack {
private LinkedList
MyStack(){lst = new LinkedList<>();}
public void push(String x){ //add x to list lst }
public String pop(){ //remove last added value from list lst }
public String peek(){ //return but do not remove last added value from list lst }
public boolean search(String x){ //Search stack for value x }
public int size(){ //return number of elements in the stack }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started