Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

the start of a class which implements a List using a singly-linked inner Entry class. You will need to complete two of the methods defined

the start of a class which implements a List using a singly-linked inner Entry class. You will need to complete two of the methods defined by List: size() and get().

DODE:

package edu.buffalo.cse116; import java.util.AbstractList; /** * This defines a few basic methods in a singly linked-based List. This is missing several methods needed for it to * actually work (but will appear in a second lecture *hint* *hint*), but has enough code for students to demonstrate * they understand how to traverse through a simple linked list. * * @author Matthew Hertz * @param  Type of data held in this collection */ public class SingleLinkedList extends AbstractList { /** Reference to the first node in our linked list. This will be null if the list is empty. */ private Entry head; /** * Creates an empty list. */ public SingleLinkedList() { reset(); } /** * This method, which is only used within the SinglyLinkedList class, returns the instance to its initial state. This * call will reset the head to be null, which also empties the linked list. */ private void reset() { head = null; } /** * Returns the element at the specified index in this list. * * @param index List location whose element should be returned. * @return Element at the specified index in this list */ @Override public E get(int index) { } /** * Returns the number of elements currently in this list. * * @return the number of elements in the list */ @Override public int size() { } /** * Class which defines the Entry instances ("nodes") in this single-linked-based list. Note that this class does not * specify a generic type, because it MUST be identical to the element type of the main class. * * @author Matthew Hertz */ private class Entry { /** Element stored with the current entry. */ private E element; /** Reference to the next entry in our linked list or null if this is the final link. */ private Entry next; /** Create a new, blank Entry. */ public Entry() { element = null; next = null; } } } 

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

Advanced Database Systems For Integration Of Media And User Environments 98

Authors: Yahiko Kambayashi, Akifumi Makinouchi, Shunsuke Uemura, Katsumi Tanaka, Yoshifumi Masunaga

1st Edition

9810234368, 978-9810234362

More Books

Students also viewed these Databases questions

Question

5. A review of the key behaviors is included.

Answered: 1 week ago

Question

3. An overview of the key behaviors is presented.

Answered: 1 week ago