Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In a C# please and make sure it works thank you so much Linked List is a linear data structure which consists of a group

image text in transcribed

In a C# please and make sure it works thank you so much

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 and use the Sort method with CompareTo of Book. - List all books, unsorted. ( 2 marks) - In the Remove and List sorted, please use CompareTo method of the Book record. So, finish the implementation of the CompareTo method of the Book record. ( 2 marks)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

JDBC Database Programming With J2ee

Authors: Art Taylor

1st Edition

0130453234, 978-0130453235

More Books

Students also viewed these Databases questions