Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

use data structure to slove this question 1. Answer the following Question: given the following class public class DoubleNode { private Object info=null; private DoubleNode

  1. use data structure to slove this question
  2. 1. Answer the following Question:

given the following class

public class DoubleNode {

private Object info=null;

private DoubleNode next=null;

private DoubleNode back=null;

..

.

}

  1. Complete the class DoubleNode by adding the necessary methods.
  2. Create a class myDoubleLinkedList similar to myLinkedList (created in the lecture). This class should have at least the following methods: inserAtFront(), removeAtFront(), print(), and printReverse().
  3. Write a method that create a linked list from a double linked list using the methods available in myDoubleLinkedList and java.util.LinkedlList.

  1. Create a class named Car which has the following fields. The fields correspond to the columns in the text file except the last one.
    1. Vehicle Name : String
    2. Engine Number : String
    3. Vehicle Price : double
    4. Profit : double
    5. Total Price : double (Total Price = Vehicle Price + Vehicle Price* Profit/100)
  1. In Test class, write a method named showCar (myDoubleLinkedList list, String eNumber) takes the list and Engine Number as parameters, and displays all the information of the particular car including Total Price.
  2. In Test class, write the main method (in Test class) to:
    1. Create myDoubleLinkedList list.
    2. Read the content of the text file and for each row an instance of the class Car is created with the calculated Total Price (use MyDoublylinkedlist of objects) and add each instance list (in b.1).
    3. Test the method showCar()
    4. Test the methods written in myDoubleLinkedList.

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

Database Concepts

Authors: David M Kroenke, David J Auer

6th Edition

0132742926, 978-0132742924

More Books

Students also viewed these Databases questions