Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Suppose we want to extend the PositionalList ADT with a method, indexOf(p), that returns the current index of the element stored at position p. Write

Suppose we want to extend the PositionalList ADT with a method, indexOf(p), that returns the current index of the element stored at position p. Write this method using only other methods of the PositionalList interface (not details of our LinkedPositionalList implementation). Write the necessary code to test the method. Hint: Count the steps while traversing the list until encountering position p.

interface Position { E getElement() throws IllegalStateException;

}

interface PositionalList extends Position{

int size();

boolean isEmpty();

Position first();

Position last();

Position before(Position p) throws IllegalArgumentException;

Position after(Position p) throws IllegalArgumentException;

Position addFirst(E e);

Position addLast(E e);

Position addBefore(Position p, E e) throws IllegalArgumentException;

Position addAfter(Positionp , E e) throws IllegalArgumentException;

E set(Position p, E e) throws IllegalArgumentException;

E remove(Position p) throws IllegalArgumentException; Iterator iterator();

Iterable> positions();

}

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_2

Step: 3

blur-text-image_3

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

Beginning ASP.NET 4.5 Databases

Authors: Sandeep Chanda, Damien Foggon

3rd Edition

1430243805, 978-1430243809

More Books

Students also viewed these Databases questions

Question

Explain the increasing importance of the procurement function.

Answered: 1 week ago