Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Note - 1) Make 4 parts only. 1) linked list 2) array list 3) get/set 4) tester Design and implement a Java class named Book
Note - 1) Make 4 parts only. 1) linked list 2) array list 3) get/set 4) tester
Design and implement a Java class named Book with two data members: title and price. The class should have suitable constructors, get/set methods, and the toString method.
Design and implement another Java class named BookShelf which has an ArrayList data member named bookList to store books. The class should have suitable constructors, get/set methods, and the toString method, as well as methods for people to add a book (prototype: addBook(Book book)), remove a book (prototype: removeBook(Book book)), and search for a book (prototype: findBook(Book book)).
Test the two classes by creating a Bookshelf object and five Book objects. Add the books to the bookshelf. Display the contents of the bookshelf. Test the removeBook and findBook methods as well.
Now re-implement the Bookshelf class using a LinkedList and a Node class. Implement the add, remove, and search methods again and test
Take screenshots of your tests
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started