Question: 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
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
