Question: In the first question, use a single list and store the given data using genirec I want this solution like this Please I want from

In the first question, use a single list and store the given data using genirec I want this solution like this

Please I want from you to read question Carefully apply what you see in front of you
Implement a simple application for Pharmacy. All medicines will be stored in a Single linked list (SLL). Every node in the linked list stores information for medicine as follows. - Medicine ID: string - Medicine name: string - Medicine Company: string - Medicine Price: float The following functionalities should be implemented. 1. Add a medicine 2. Delete medicine by name and ID 3. Update a medicine using the ID 4. Search for a medicine using a given ID 5. Sort the linked list using medicine ID 6. Print all medicines to the screen. public class Node\{ private T data; private Node next; public Node(T data) \{ this.data = data; \} public Node
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
