Possible Duplicate:
Can I sort two lists in relation to each other?
I have a Sorting Scenario, I didnt know how to acheive it? Two Collections
List<<String>String> Key, List<<String>String> Value
I have to sort the value from a-z and such that the key for the corresponding value should not be change.
>>eg: Key and Value
2=>two
100=>four
1=>five
0=>nine
3=>eight
8=>one
>>after Sorting:
3=>eight
1=>five
100=>four
0=>nine
8=>one
2=>two
Any one please Help me?