Question: Problem 3: Create a new Java Application to manage a sorted Double Linked Lists with header and trailer (Assume that the value is between 20

Problem 3: Create a new Java Application to manage a sorted Double Linked Lists with header and trailer (Assume that the value is between 20 and 60). a) Create Node class Add methods to get and set, Data and Link . b) Create MyDoubleLikedList class and write methods to Insert nodes Delete nodes Search List for a value Display all values in the nodes c) Create Main class Create 3 lists: listl, list2, list3 of type MyDoubleLikedList Write a method to generate randomly between 20 and 60 . i. Insert 10 integers (do not insert duplicates) into listl ii. Insert 15 integers (do not insert duplicates) into list2. Write a method to find the average of the even numbers in a list. Given two lists, write a method to find the elements that are in one of the list but not in the other list and insert them into a third list. Test these methods. Problem 4: Modify problem 3, but by creating sorted Circular Linked List instead of Double Linked Lists
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
