I want to sort the tree map based on the key where key is a variable,so sorting should be based on variable value, How can we achieve this? I want use in built sort method rathar implementing it through code, any reply with example is of great help.
|
As Key-Type (in that case Edit: Okay, here is a suggestion how to re-map your map.
|
|||||||||||
|
|
|
|||
|
|
A treemap is a Red-black tree, which is a balanced binary search tree. In other words, the tree is already sorted (or rather, arranged as per the binary search tree rules) with its height balanced so that tree operations have a O(lg n) complexity. However, I think what you want is to print all the keys in sorted order. This is as simple as implementing an inorder traversal on the treemap, or you could use the keySet() method to get a Set and iterate over the values. e.g. of inorder traversal
EDIT: Okay, I'm pretty sure this is what you want. You want to sort by values:
Output:
So this works even for sorting string values:
Output:
Also, sachin take note that having "variable keys" and variable values are completely different things. |
|||||||||||
|
k=3, l=2 ,m=1so in this case I want to sort keym<l<k. and k maped to x l is mapped to y m is mapped to z – sachin Aug 3 '11 at 11:57