Define a class called car that implements the interface

Assignment Help Programming Languages
Reference no: EM131310176

The Car Class

Define a class called "Car" that implements the parameterized Comparable interface. Each object of this class represents a type of car. Your class must provide all the methods in the public interface. Be sure to properly document each method in this class.

The CarComparator Class

Define a class, "CarComparator", that implements the parameterized Comparator interface. The Compare method should compare cars by -year+make+model, where + denotes ascending order, - denotes descending order, and year, make and model are the primary, secondary and tertiary keys.

The CarSorter Class

Write a program, CarSorter, to test your Car and

CarComparator implementations. Suppose that you have a text file with each line containing the year, an integer, the make, a one-word string, and model, a string of one or more words, of a car. Write a program that reads the information about the cars from the file and stores them in an array list of objects of the Car class.

For example, the input file to the program could be carlot.txt whose contents are shown below:

1998 Honda Prelude

1998 Honda Accord

2006 Honda Ridgeline

1996 Ford Taurus

1996 Mitsubishi Eclipse

2015 Mitsubishi Galant

2010 Ford Fusion

2003 Mazda Protege 5

2002 Mazda Protege 5

2002 Isuzu Trooper

Your program should do the following:

1. prompt the user for the name of the input file,

2. read the data from the input file and store information about the cars in an array list of Car objects,

3. print the unsorted data from the array list to the screen, as shown below,

4. create another array list and an array that contain the same data as the original array list,

5. sort the second array list by the order defined by the Comparable interface, while leaving the original array list unsorted

6. prompt the user for the name of an output file and then display on the screen and write the information in the sorted array list to the file,

7. sort the array by the order defined by the Comparable interface,

8. prompt the user for the name of a second output file and then display on the screen and write the information in the sorted array to the file,

9. again, create a third array list and a second array that contain the same data as the original array list,

10. sort the third array list using a comparator of the CarComparator class,

11. prompt the user for the name of third output file and then display on the screen and write the information in the sorted array list to the file,

12. sort the second array using a comparator of the CarComparator class,

13. and, finally, prompt the user for the name of a fourth output file and then display on the screen and write the information in the sorted array to the file.

The input file may contain information about any number of cars. The output to the file and on the screen should be formatted as shown in the sample run below. Your program should use a try-catch statement to handle any potential IOException.

Enter the name of the input file -> carlot.txt

The Unsorted Array List of Cars

[Honda, Prelude, 1998]

[Honda, Accord, 1998]

[Honda, Ridgeline, 2006]

[Ford, Taurus, 1996]

[Mitsubishi, Eclipse, 1996]

[Mitsubishi, Galant, 2015]

[Ford, Fusion, 2010]

[Mazda, Protege 5, 2003]

[Mazda, Protege 5, 2002]

[Isuzu, Trooper, 2002]

Enter the name of the first output file -> mmya1.txt

The Sorted Array List of Cars By Make-Model-Year

------------------------------------------------

Ford Fusion 2010

Ford Taurus 1996

Honda Accord 1998

Honda Prelude 1998

Honda Ridgeline 2006

Isuzu Trooper 2002

Mazda Protege 5 2002

Mazda Protege 5 2003

Mitsubishi Eclipse 1996

Mitsubishi Galant 2015

Enter the name of the second output file -> mmya.txt

The Sorted Array of Cars By Make-Model-Year

-------------------------------------------

Ford Fusion 2010

Ford Taurus 1996

Honda Accord 1998

Honda Prelude 1998

Honda Ridgeline 2006

Isuzu Trooper 2002

Mazda Protege 5 2002

Mazda Protege 5 2003

Mitsubishi Eclipse 1996

Mitsubishi Galant 2015

Enter the name of the third output file -> ymmal.txt

The Sorted Array List of Cars By Year-Make-Model

------------------------------------------------

2015 Mitsubishi Galant

2010 Ford Fusion

2006 Honda Ridgeline

2003 Mazda Protege 5

2002 Isuzu Trooper

2002 Mazda Protege 5

1998 Honda Accord

1998 Honda Prelude

1996 Ford Taurus

1996 Mitsubishi Eclipse

Enter the name of the fourth output file -> ymma.txt

The Sorted Array of Cars By Year-Make-Model

-------------------------------------------

2015 Mitsubishi Galant

2010 Ford Fusion

2006 Honda Ridgeline

2003 Mazda Protege 5

2002 Isuzu Trooper

2002 Mazda Protege 5

1998 Honda Accord

1998 Honda Prelude

1996 Ford Taurus

1996 Mitsubishi Eclipse.

Reference no: EM131310176

Questions Cloud

Benefits of methodology for handling criteria creep : This issue is not confined to the TCSEC, but rather is a problem universal to all evaluation technologies. Discuss the benefits and drawbacks of the CC methodology for handling criteria creep.
What is ibm preferred stocks beta with respect to market : Suppose that you own IBM preferred stock that pays an annual, fixed, and perpetual dividend of $10 which is worth $100 per share. The market return is 12% and the risk-free rate is 4%. What is IBM preferred stock's beta with respect to the market?
Explain what you think the purpose of the law is : Discussion for HR Recruit and Selection. Describe the law chosen. Explain what you think the purpose of the law is
Dollar exchange rate with the iceland krona : The Celluloid Collar Corporation has $210,000 in tax loss carryforwards. The Bowstring Shirt Company, a firm in the 30% tax bracket, would be willing to pay (on a nondiscounted basis) the sum of ______________ for the carryforward alone. Three years ..
Define a class called car that implements the interface : Define a class called "Car" that implements the parameterized Comparable interface. Each object of this class represents a type of car. Your class must provide all the methods in the public interface.
What are the values of doing formal evaluation : The issue of binding assurance requirements to functional requirements versus treating them as mutually exclusive sets has been debated over the years. Which approach do you think is preferable, and why?
What are the legal challenges involved : Of the three options that Obama's executive order is intended to provoke, which do you think businesses are most likely to choose and why? Are there any other options? If so, what are they and what are the legal challenges involved
Can hdm and gypsy be used interchangeably : Contrast the goals of the Gypsy Verification Environment with those of HDM. In particular, when is using HDM appropriate, and when is using Gypsy appropriate? Can HDM and Gypsy be used interchangeably?
Organization influence decision making and the outcome : 1. How does the financial aspect of an organization influence decision making and the outcome? 2. What are the advantages and disadvantages of a firm's use of power purchasing parity? Provide an example.

Reviews

Write a Review

Programming Languages Questions & Answers

  Write a haskell program to calculates a balanced partition

Write a program in Haskell which calculates a balanced partition of N items where each item has a value between 0 and K such that the difference b/w the sum of the values of first partition,

  Create an application to run in the amazon ec2 service

In this project you will create an application to run in the Amazon EC2 service and you will also create a client that can run on local machine and access your application.

  Explain the process to develop a web page locally

Explain the process to develop a Web page locally

  Write functions

These 14 questions covers java class, Array, link list , generic class.

  Programming assignment

If the user wants to read the input from a file, then the output will also go into a different file . If the user wants to read the input interactively, then the output will go to the screen .

  Write a prolog program using swi proglog

Write a Prolog program using swi proglog

  Create a custom application using eclipse

Create a custom Application Using Eclipse Android Development

  Create a application using the mvc architecture

create a application using the MVC architecture. No scripting elements are allowed in JSP pages.

  Develops bespoke solutions for the rubber industry

Develops bespoke solutions for the rubber industry

  Design a program that models the worms behavior

Design a program that models the worm's behavior.

  Writing a class

Build a class for a type called Fraction

  Design a program that assigns seats on an airplane

Write a program that allows an instructor to keep a grade book and also design and implement a program that assigns seats on an airplane.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd