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

link|improve this question
Show us what you have tried. If you can build a linked list with zero data field, then just add two data fields to the class representing the nodes of your list. – JB Nizet Mar 7 '11 at 21:47
show an implementation that uses a single field; i will add the 2nd for you. – bestsss Mar 7 '11 at 22:42
feedback

2 Answers

You basically have to extend the LinkedList class with type as your custom object may be like a Person.

public class PersonList extends LinkedList<Person> {

}

implement your methods inside the class for query, delete etc.

link|improve this answer
1  
I think the idea of the homework is to implement a linked list, not use the one already implemented in the JDK. – JB Nizet Mar 7 '11 at 21:50
1  
java.util.LinkedList is virtually not extendable. The idea is just terrible (PersonList subclass of LinkeList) and doesn't help the homework either. – bestsss Mar 7 '11 at 22:41
feedback

You should provide your current implementation attempt.
However if you don't understand the concept of a LinkedList here is an abstract :

A LinkedList is like the name implies a list of Links so in order to explain the Linked list let us first go over the concept of a link :
A link should have the following abilities :
1)know the next link(reference to next link)
2)contain data field(or fields in your case) that can be retrieved and set externally

Now implementing a LinkedList after knowing the concept of a Link is very simple
Consider the following as a LinkedList

Link1->Link2->Link3->Link4..

Now since every Link knows (has a reference to the next Link) the next Link All the LinkedList needs to know is where to start(First Link ?)
You should have noticed by now that LinkedList has no size limit Dynamic Data Structure

That should be enough info to get you started , try implementing it and if you run into any problems show us the code and we will do our best to help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.