Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 lst;

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Securing SQL Server Protecting Your Database From Attackers

Authors: Denny Cherry

1st Edition

1597496251, 978-1597496254

More Books

Students also viewed these Databases questions