JAVA PLEASE
In this project, we are going to build a tiny database organized
as a singly linked list for storing and retrieving
the information of a group of products on sale. The information of
each product includes the following items: Product ID, Name,
Seller, Quantity In Stock, Average Shipping Time, Original Price,
Current Price. We assume that a node in the linked list should
be defined by the following class.
class Product
{
long ID;
String name;...