I need to convert a navigable map to a 2d String array.Below given is a code from an answer to one of my previous question.
NavigableMap<Integer,String> map =
new TreeMap<Integer, String>();
map.put(0, "Kid");
map.put(11, "Teens");
map.put(20, "Twenties");
map.put(30, "Thirties");
map.put(40, "Forties");
map.put(50, "Senior");
map.put(100, "OMG OMG OMG!");
System.out.println(map.get(map.floorKey(13))); // Teens
System.out.println(map.get(map.floorKey(29))); // Twenties
System.out.println(map.get(map.floorKey(30))); // Thirties
System.out.println(map.floorEntry(42).getValue()); // Forties
System.out.println(map.get(map.floorKey(666))); // OMG OMG OMG!
I have to convert this map to a 2d String array:
{
{"0-11","Kids"},
{"11-20","Teens"},
{"20-30","Twenties"}
...
}
Is there a fast and elegant way to do this?
"OMG OMG OMG!"- LOL no wonder the snippet looks familiar... – polygenelubricants Aug 26 '10 at 11:45String[][]? What about a genericList<MappedInterval<Integer,String>>instead? You can getMappedInterval.start()and.end(), and.value(), and you can@OverridethetoString()to print it like[start-end] => valueor something like that. Basically I don't think you can come up with any much better algorithm to convert toString[][], but there are much better representation thanString[][]to begin with, and I can give the snippet to do that. – polygenelubricants Aug 26 '10 at 11:54