Can someone help me get started, i'm not sure how to create a linklist that can contain two data field
Write the Java program for a linked list class. The node that forms the linked list should contain two data fields: 1. ID (unique) 2. Age. All the nodes in the linked list are sorted increasingly by the age.
Implement the following operations on the linked list.
(a)
Traverse the linked list and print the ID, Age for all the nodes.
(b)
Insert a new node to the list while keeping the list sorted.
(c)
Delete a node from the list for a given ID.
(d)
Query on the link list. Basically, there are two types of queries. One is to input the unique ID, and display the corresponding age. And the other is to input the age, then display all the IDs with that age.
(e)
Change this link list to a sorted list that is ordered by the age decreasingly.
You should also try above operations on an example with at least 3 nodes in your program and provide the screenshot for the execution results