Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need help with this Java Data Structures assignment. Thanks The System.nanoTime() is used to measure the Runtime Runtime Class Code import java.util.Arrays; public class

I need help with this Java Data Structures assignment. Thanks

image text in transcribedimage text in transcribed

image text in transcribedimage text in transcribed

The System.nanoTime() is used to measure the Runtime

Runtime Class Code

import java.util.Arrays;

public class RunTime {

private static final int MAX = 10; private long[] runtimes; private int count;

public RunTime() { this.runtimes = new long[MAX]; this.count += 0; } public void addRuntime(long runTime) { if (this.count == MAX) { for (int i = 0; i

ListInterface Methods

image text in transcribed

LinkedLinkNode

image text in transcribed

Driver Interface Methods

image text in transcribedTest Cases picture is not so clear so typed it

All the elements being added and removed from the lists must be instances of the Integer class.

You will test the following scenarios for both the Array Based List and the Linked List implementations:

Driver.TestType.AddSortedOdd: Starting with an empty list, use the addSorted(I obj) method to add java.lang.Integer objects representing the odd numbers (1 n 9,999) to the list.

Driver.TestType.AddSortedEven: Starting with a list containing the odd numbers less than 10,000, use the addSorted(I obj) method to add java.lang.Integer objects representing the even numbers (2 n 10,000) to the list.

Driver.TestType.AddAll: Starting with an empty list, use the add(I obj) method to add 10,000 java.lang.Integer objects to the list.

Driver.TestType.AddAllAtIndexZero: Starting with an empty list, use the add(Object obj, int index) method to add 10,000 java.lang.Integer objects to the list, all at index = 0.

Driver.TestType.RemoveAllEven: Starting with a complete list containing 10,000 java.lang.Integer objects representing all the numbers (1 n 10,000); remove all the even numbers by repeatedly calling the remove(int index) method. Remove the even numbers starting with 2, then 4, then 6, ....

Driver.TestType.RemoveAllOdd: Starting with a complete list containing 10,000 java.lang.Integer objects representing all the numbers (1 n 10,000); remove all the odd numbers by repeatedly calling the remove(int index) method. Remove the odd numbers starting with 9,999, then 9,997, then 9,995, ....

Details 1. RunTime Class You will copy the RunTime class that you created in Homework 1 to the project you are using for this assignment. 2. Array Based List Class You will write the ArrayBasedList.java class which will implement the List Interface. The interface may be downloaded from ListInterface.iava. Please note that you do not inherit from the RunTime class. 3. Linked List Class You will write the LinkedList java class which will implement the List Interface The interface may be downloaded from ListInterfaceiava Please note that you do not inherit from the RunTime class. 4. Linked list Node Class Your will write the LinkedListNode. Please see the Linked List Documentation for all the methods you will need. Please note that you do not inherit from the RunTime class

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

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 1 Lnai 9284

Authors: Annalisa Appice ,Pedro Pereira Rodrigues ,Vitor Santos Costa ,Carlos Soares ,Joao Gama ,Alipio Jorge

1st Edition

3319235273, 978-3319235271

More Books

Students also viewed these Databases questions