I have a requirement like there is an item A that has several sub items like a1,b1,c1... and each sub-item has in turn several sub-items like {a11,a12,a13...} which correspond to a1 and {b11,b12,b13..} which correspond to b1. So, its basically like a tree structure with item A as the root. Now, there is some time-stamp associated with each item and its sub-items. The time-stamp is different for all these items and sub-items. I need to find the item/sub-item with the latest time-stamp. How to proceed to solve this in java. Im kind of new to using data structures.
|
Use TreeMap It will suit your need. Here is a sample program from java.samples.com
|
|||
|
|
|
For data structures, take a look at
You may also be interested in this link |
||||
|
|
|
There is a decent tree structure implemented in the JDK. Have a look at |
|||
|
|
|
I recommend you to create a Class for Item, then you can design the class separately. For subitems depends on the data types, choose different data structures. First if you know that items are of same types, for example a1, b1, c1 are all string then you can use ArrayList to hold them, or use array if the total number is bounded. If they are of different types, consider hashmap then. |
|||
|
|
|
You can simple use an array
|
|||
|
|
|
Assuming, there is not item B:
Now, where are you facing problem? |
||||
|
|
|
Consider every item as a Node. So make a class Node. This class will have following members - nodeName, parentNode, childNode.
Add additional attributes according to your use. Write the constructor to create a Node object as below -
You will need to generate getters and setters for them to get the parent and child nodes associated. I have not tested the code. Please re-fornat it as per the requirement and let me know if it resolves your issue. |
|||
|
|
|
Suggest to implement your own Tree Structure, as looks like your requirement is to maintain an explicit tree model yourself. For example,
If you want to get the item with largest or smallest timestamp or sort them, you can put all the items into a List and sort using |
|||
|
|
basically like a tree structure, why not use a tree structure? – paranoid-android Feb 2 '12 at 6:25