Skip to content

A java program that gives info on prices and millage of cars to be sold. Underlying data structure is priority queue

Notifications You must be signed in to change notification settings

ruy16/Smart-shopping-cart

Repository files navigation

CS/COE 1501 Assignment 3

Goal:

To explore an advanced application of priority queues in order to gain a deeper understanding of the data structure.

High-level description:

You will be writing a basic application to help a user select a car to buy. You will write a menu-based user interface driver program (to be run in the terminal, no GUI), but most of the logic will be in implementing a priority queue-based data structure. You should write a PQ-based data structure that stores objects according to the relative priorities of two of their attributes, making it efficient to retrieve objects with the minimum value of either attribute. Your data structure should further be indexable to allow for efficient updates of entered items. You will want users to be able to enter details about cars that they are considering buying. The user should then be able to efficiently retrieve the car with the lowest mileage or lowest price. These retrievals should be possible on the set of all entered cars or on the set of all cars of a specific make and model (e.g., "lowest price Ford Fiesta", "lowest mileage Cadillac Escalade").

Specifications:

  1. First you must create a class to store data about cars to buy Specifically, this class must contain the following information:
    • A unique VIN number (17 character string of numbers and capital letters (but no I (i), O (o), or Q (q) to avoid confusion with numerals 1 and 0)
    • The car's make (e.g., Ford, Toyota, Honda)
    • The car's model (e.g., Fiesta, Camry, Civic)
    • The price to purchase (in dollars)
    • The mileage of the car
    • The color of the car
  2. You must write a terminal menu-based driver program (again, no GUI). Specifically, your driver must present the user with the following options:
    1. Add a car
      • This will (one at a time) prompt the user for all of the above-listed attributes of a car to keep track of
    2. Update a car
      • This option will prompt the user for the VIN number of a car to update, and then ask the user if they would like to update 1) the price of the car, 2) the mileage of the car, or 3) the color of the car
    3. Remove a specific car from consideration
      • This option will prompt the user for the VIN number of a car to remove from the data structure (e.g., if it is no longer for sale)
      • Note that this mean you will need to support removal of cars other than the minimum (price or mileage) car
    4. Retrieve the lowest price car
    5. Retrieve the lowest mileage car
    6. Retrieve the lowest price car by make and model
      • This option will prompt the user to enter (one at a time) a make and model and then return the car with the minimum price for that make and model
    7. Retrieve the lowest mileage car by make and model
      • This option will prompt the user to enter (one at a time) a make and model and then return the car with the minimum mileage for that make and model
  3. Retrieval operations should not remove the car with minimum price or mileage from the datastructure, just return information about that car. Cars should only be removed via the "remove a specific car from consideration" menu option.
  4. To aid in the testing of your application, you will find an example file with some test data store in this repository (cars.txt). Your progam should read in the contents of this file to initialize your data structure each time it is run. You can assume that this file will already exist, and you do not need to write an updated version of the data sturcture back to the file.
  5. To ensure efficiency of operations, you must base your data structure around the use of heaps with indirection (making them indexable). Note that operations on either attribute (e.g., retrieve minimum price, retrieve minimum mileage) should have a logarthmic runtime (both for all cars and for a specific make and model). Updates and removals should also have a logarithmic runtime. Take care in selecting your approach to the indirection data structure to account for the types of keys you will need to store and the type and number operations that you will need to perform on them.
  6. Because this project requires you to make a number of decisions about how to implement its requirements, you will need to write a documentation file explaining your implementation, and justifying your decisions. Name this file documentation.txt. Be sure to describe your carefully document your approach to ease the effort required to trace through your code for grading. Be sure to include descriptions of the runtime and space requirements of your approach and use them in your justification of why you think your approach is the best way to go.

About

A java program that gives info on prices and millage of cars to be sold. Underlying data structure is priority queue

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages