Tagged Questions

3
votes
7answers
131 views

Java TreeMap (comparator) and get method ignoring the comparator

public final Comparator<String> ID_IGN_CASE_COMP = new Comparator<String>() { public int compare(String s1, String s2) { return s1.compareToIgnoreC …
1
vote
5answers
42 views

Creating an universal comparator to sort a tree map problem.

This is where I'm at: public final Comparator<Object> ID_IGN_CASE_COMP = new Comparator<Object>() { public int compare(Object o1, Object o2) { String s1 = …
0
votes
7answers
153 views

Sort Map<String, Object> by keys with IgnoreCase?

Well, I tested TreeMap but it doesn't take in account IgnoreCase on string comparision. I need to order lexicographically and ignoring case. Is there any other way? Thanks, that w …
0
votes
2answers
62 views

Java: Treemap - forbid null?

Is there a way to prevent a treemap from accepting null values, or do I need to do a check every time I enter something?
0
votes
3answers
201 views

Java TreeMap iterator not working correctly for String keys.

I have a TreeMap that maps String keys to a custom City class. Here is how it is instantiated: TreeMap<String, City> nameDictionary = new TreeMap<String, City>(new Ci …
0
votes
6answers
248 views

How to sort a treemap based on its values?

How can I sort a treemap using its values rather than the key?
0
votes
6answers
784 views

Java: SortedMap, TreeMap, Comparable? How to use?

I have a list of objects I need to sort according to properties of one of their fields. I've heard that SortedMap and Comparators are the best way to do this. Do I implement Comp …
0
votes
4answers
403 views

How to iterate over a TreeMap?

I want to iterate over a treeMap, and for all 'key's which have a particular value, I want them to be added to a new TreeMap. How can i do this? Code samples would be prefered.
1
vote
2answers
183 views

J2ME does not find my implementation of java.util.TreeMap

What I'm trying I'm trying to use java.util.TreeMap in a J2ME application. I know that TreeMap is present on J2SE but not on J2ME, so I've made some efforts to port the J2SE 6.0 T …
2
votes
3answers
193 views

Visual Treemap in Winforms

Are there any frameworks for building squarified treemaps in C# 2.0 WinForms? Something similar to this: (from http://www.codeproject.com/KB/recipes/treemaps.aspx)
0
votes
6answers
212 views

What Can A ‘TreeDict’ (Or Treemap) Be Used For In Practice?

I'm developing a 'TreeDict' class in Python. This is a basically a dict that allows you to retrieve its key-value pairs in sorted order, just like the Treemap collection class in …
5
votes
7answers
5k views

Which data structure would you use: TreeMap or HashMap? (Java)

Description | A Java program to read a text file and print each of the unique words in alphabetical order together with the number of times the word occurs in the text. The progr …
1
vote
4answers
1k views

Best way to store Country codes, names, and Continent in Java

I want to have a List or Array of some sort, storing this information about each country: 2 letter code Country name such as Brazil Continent/region of the world such as Eastern …
-1
votes
4answers
150 views

Easy way to get a subset of the keyset of a TreeMap (in Java)

Is it possible to extract the top n (I use top because I believe a TreeMap is sorted) key elements from a TreeMap, without iterating using an Iterator object. I can do the iterati …
-2
votes
3answers
168 views

Easy way to get a subset of the keyset of a TreeMap (in Java) [closed]

Is it possible to extract the top n (I use top because I believe a TreeMap is sorted) key elements from a TreeMap, without iterating using an Iterator object. I can do the iterati …

1 2 next
15 30 50 per page