Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

* * * * * * Please put working code and output and not repost other answers. I have had brain surgeries i need to

****** Please put working code and output and not repost other answers. I have had brain surgeries i need to visually see how it works thank you. Using Java in netbeans ******* Static methods can be called directly from the name of the class that contains the method. Static methods are usually created to do utility operations. For example:
public class Test{
public static int timesTwo(int value){
return value * value;
}
}
public class TestDriver{
public static void main(String[] args){
int var = Test.timesTwo(5);
System.out.println(var);
}
}
For this exercise, create a class called ManyLinkedLists. It will contain a static method called createLinkedList(). That method takes an argument that is a constant defined in the ManyLinkedLists class. The identifier of the constants should describe a type of linked list. When the createLinkedList method is called, it should return a linked list object of the type identified by the constant.
For example:
DoubleEndedList del = ManyLinkedLists.createLinkedList(ManyLinkedLists.DOUBLEENDEDLIST);
Give the createLinkedList method the ability to return the linked lists described below:
A double-ended linked list. That kind of linked list is described in chapter 5 of your text (starts on page 198).
A doubly linked list. That kind of linked list is described in chapter 5 of your text (starts on page 221).
Note that in order to create the above linked lists you will have to create something equivalent to the Link class from exercise 5A. Use a long instance variable as the data within your link class or classes.
Your project should contain any other classes you need. Include a ManyLinkedListsDriver class that tests the ManyLinkedLists class, its method, and the data structures that the method can return. The peculiar features of the two forms of linked list should be clearly demonstrated.

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

Seven Databases In Seven Weeks A Guide To Modern Databases And The NoSQL Movement

Authors: Luc Perkins, Eric Redmond, Jim Wilson

2nd Edition

1680502530, 978-1680502534

More Books

Students also viewed these Databases questions