Question: no code was given. must be in C#. thanks in advance. Linked List is a linear data structure which consists of a group of nodes
Linked List is a linear data structure which consists of a group of nodes in a sequence. Each node contains two parts: Data and Address. It is present in System. Collections. Generic namespace. This generic type allows fast inserting and removing of elements. It implements a classic linked list. In the project Question 1 of the COMP212 Midterm template solution, please, implement the missing code to make the app completely functional to allow users to: - Add a new book to the LinkedList. Do not allow duplicates and increment the Id of the book. ( 3 marks) - Remove books of the list, based on the ISBN of the book. ( 2 marks) - Find a book (by Title). Notify the user of the book does not exist. ( 3 marks) - List all books, sorted by ISBN. ( 3 marks) - Convert the LinkedList into a List
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
