Question: Write a Java method in the onlineShopper class called mergeCarts, that will merge two shopping carts into one. This method will merge the two carts
Write a Java method in the onlineShopper class
called mergeCarts, that will merge two
shopping carts into one. This method will
merge the two carts by transferring all items
from the smaller cart to the larger cart. If both
carts contain the same number of items then
just pick the first cart as the larger cart.
It's important not to create a new shoppingCart
instance inside the mergeCarts method.
Also, important to handle situations where one
or both shoppingCart instances are empty.
Only use methods from the Bag Class in your
implementation.
Inputs : Two shoppingCart instances
Output: one shoppingCart instance containing
items from both carts.
The answer should be in Java. Minor syntax
errors are not penalized.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
