Question: Please read the requirements that I added in the second Pic. I will give the highest positive rating that I will be able to. Thank
Available until Feb 16 at 11:55pm in this lab, you will write an interface for a list that contains different methods than those contained in the Listinterface class from Chapter 12. With this kind of list, the user can only access the beginning or ending elements of a list, not any elements from the middle of the list. Specify this list in an interface called EntryWayListInterfacecT. Your interface must use generic in this way ( Note that you are only creating the interface: you are not implementing the methods. Requirements Your interface must: 1. compile (20 points) 2. contain these exact method headers (80 points) . boolean insert Head(T newEntry) boolean insertTail(T newEntry) T deleteHead) (returns the object that has been deleted) T deleteTail ( ) (returns the object that has been deleted) void display() . int contains (T anEntry) (returns the position of the entry that was found) . boolean isEmpty 0 . boolean isFull )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
