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, 22.06.2019 00:20
The pyraminx is a rubik's cube-type toy in the shape of a tetrahedron (not a pyramid). the pyraminx shown below has edges 15\,\text{cm}15cm15, space, c, m long and vertical height h=12.2\,\text{cm}h=12.2cmh, equals, 12, point, 2, space, c, m. the triangle drawn with dashed lines is a right triangle. what is the distance rrr? round your answer to the nearest tenth.
Answers: 1
question
Computers and Technology, 22.06.2019 20:00
What statement best describes operating systems? it’s possible for modern computers to function without operating systems. most operating systems are free or very inexpensive. operating systems are managed by the computer’s microprocessor (cpu). operating systems manage the computer’s random access memory (ram).
Answers: 1
question
Computers and Technology, 23.06.2019 15:00
In the blank libreoffice writer document, to start the process of entering a date field into a letter, click on the insert menu. edit menu. file menu. fields menu.
Answers: 3
question
Computers and Technology, 23.06.2019 19:30
Amitha writes up a one-page summary of a novel during her summer internship at a publishing company. when she reads over the page, she realizes she used the word “foreshadow” seven times, and she would like to reduce the repetition. which tool would best amitha solve this problem?
Answers: 3
You know the right answer?
Grocery FRQ (ArrayLists) public class Grocery
{
private String category;
private...
Questions
Questions on the website: 13722361