You need to store information about the gardening tools


  1. You need to store information about the gardening tools that you sell in your online store. To do so, you maintain a list of product records, each of which contains information about a single type of product, including how many copies of it you have in stock. You don't tend to change the types of tools that you sell, and thus items are seldom added or removed from the list. However, you need to update a product's record whenever your inventory of that product changes (e.g., because someone purchases one!). A product's position in the list is also its product ID, and therefore updating a record involves using the product ID to get the corresponding record and modifying its contents.
  2. You need to maintain a list of tweets that are made by government officials in the current week. The number of tweets can vary widely from week to week in a way that is hard to predict. You start with an empty list at the start of the week, and as tweets are made you add them to the list. You need to frequently display the tweets in reverse chronological order - from most recent to least recent.
  3. You are responsible for maintaining a monthly list of events for an online arts calendar. The number of events is fairly consistent from month to month. Events are added to the list in chronological order, and you need to display them in that same order.

Considered two different implementations of the list ADT: ArrayList and LLList. For each of the following applications, decide which list implementation would be better for that particular application. Your should consider both time efficiency and space efficiency,

Solution Preview :

Prepared by a verified Expert
Business Economics: You need to store information about the gardening tools
Reference No:- TGS02892450

Now Priced at $10 (50% Discount)

Recommended (98%)

Rated (4.3/5)