subject

Grocery FRQ (ArrayLists) public class Grocery
{
private String category;
private int units;
private double price;
/*there may be other instance variables, constructors and methods not shown*/
public boolean equals (Grocery g)
{
/*implementation not shown*/
}
public int getUnits(){
return units;
}
public double getPrice(){
return price;
}
public String getCategory(){
return category;
}
public class Shopping
{
private ArrayList myGroceries;
public Shopping(Grocery[] groc){
/*to be implemented in part A*/
}
public Grocery findBestValue(String c){
/*to be implemented in part B*/
}
}
The Shopping constructor initializes the myGroceries instance variable with elements from the groc array. Only unique Grocery items are added to the myGroceries list (i. e. there are no duplicate Grocery items in myGroceries). A Grocery item is considered unique if at least one of the attributes differs (the category, units, and/or price). For example, if given the code:
Grocery[] theGroceries = {new Grocery("cereal", 1, 4.99), new Grocery("milk", 1, 4.29),
new Grocery("cereal", 2, 7.99), new Grocery("cereal", 1, 4.99),
new Grocery("candy", 48, 10.99), new Grocery("candy", 6, 1.00)};
Shopping myShopping = new Shopping(theGroceries);
The Grocery item "cereal", 1, 4.99 is not unique as there is another Grocery item with the same category, unit, and price.
The Grocery item "cereal", 2, 7.99 is unique because it is different from the other Grocery item by both the number of units and price.
Then the myGroceries arraylist of the Shopping class would be initialized with the following Grocery contents:
"cereal", 1, 4.99
"milk", 1, 4.29
"cereal", 2, 7.99
"candy", 48, 10.99
"candy", 6, 1.00
Complete the Shopping constructor.
Grocery items can be categorized. Grocery items have a number of units (quantity) and price (for the collection of units). The findBestValue method locates all Grocery items of the Shopping class with the same category c and determines the best priced option of the category by determining the lowest price per unit. The findBestValue method returns the best priced Grocery item of category c.
Precondition - there exists at least one such element with category c.
For example, the myGroceries arrayList contains the following Grocery items:
"cereal", 1, 4.99 (price per unit is 4.99)
"milk", 1, 4.29 (price per unit is 4.29)
"cereal", 2, 8.00 (price per unit is 4.00)
"candy", 50, 10.00 (price per unit is 0.20)
"candy", 10, 1.00 (price per unit is 0.10)
Then a call to findBestValue() would return the last Grocery item (with the category "candy", number of units is 10 and price is 1.00);
Write the findBestValue() method below.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 00:30
Which one of the following is considered a peripheral? a software b mouse c usb connector d motherboard
Answers: 2
question
Computers and Technology, 23.06.2019 18:00
Freya realizes she does not have enough in her bank account to use the debit card. she decides to use a credit card instead. which questions should freya answer before using a credit card? check all that apply. can i pay at least the minimum payment each month? can i make payments on time and avoid late fees? will i have to take out a loan? how much in finance charges can i afford to pay? should i talk to a consumer credit counseling service?
Answers: 1
question
Computers and Technology, 23.06.2019 20:00
Match the file formats with the types of multimedia they can store
Answers: 2
question
Computers and Technology, 24.06.2019 14:00
In the microsoft® access® and microsoft excel® programs, the ribbon contains tabs that are divided into with like tools in them. parts groups containers bunches
Answers: 1
You know the right answer?
Grocery FRQ (ArrayLists) public class Grocery
{
private String category;
private...
Questions
Questions on the website: 13722367