Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
11answers
33k 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 program should declare a ...
6
votes
5answers
243 views

Java: Compare/sort arbitrary objects

Is there anyway I can define a sequence/order for all objects in a JVM so that for any two distinct objects o1 or o2, there's a well defined rule that says either o1 > o2 or o2 > o1 and o1 == o2 if ...
6
votes
3answers
1k 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)
4
votes
2answers
124 views

Is there a Scala version of NavigableMap?

In Java 1.6, the NavigableMap (and the NavigableSet) interfaces were introduced and TreeMap was updated to implement the new interface. Among other things, NavigableMap is useful for asking questions ...
4
votes
1answer
172 views

How to set and get keys from scala TreeMap?

Suppose I have import scala.collection.immutable.TreeMap val tree = new TreeMap[String, List[String]] Now after above declaration, I want to assign key "k1" to List("foo", "bar") and then how do i ...
4
votes
7answers
4k 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.compareToIgnoreCase(s2); } ...
4
votes
4answers
13k 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.
4
votes
5answers
5k 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 Europe, North ...
3
votes
1answer
71 views

SortedBiTreeMultimap data structure in Java?

Is there any Java library with TreeMap-like data structure which also supports all of these: lookup by value (like Guava's BiMap) possibility of non-unique keys as well as non unique values (like ...
3
votes
1answer
104 views

How do you adjust/control the scale in a treemap (using the 'portfolio' library) in R?

I am using R and the 'portfolio' library to build a treemap. The scale is defaulting to '-1000 to 1000'. I need it to be '0 to 1000', for example. I know there is a 'scale' parameter to map.market(), ...
3
votes
3answers
276 views

Comparator<String> must override super class method

I'm making a TreeMap<String, String> and want to order it in a descending fashion. I created the following comparator: Comparator<String> descender = new Comparator<String>() { ...
3
votes
4answers
108 views

Best data structure for this problem?

I am using Java for this program, and I currently have a situation where I want to add key/value pairs to a table with integer keys, like add (1, "Bobby") add (6, "Sue") add (3, "Mary") add (8, ...
3
votes
1answer
98 views

How do I create a Treemap and depict it through flex?

So basically what I'm trying to do is make something like this: http://store.kapit.biz/demo/treemap/prod/index.html# I've searched long and hard to find a site that would show me some pseudocode (at ...
3
votes
1answer
342 views

How to initialize a TreeMap with pre-sorted data?

My app uses a TreeMap to keep data sorted and have log(n) lookups & inserts. This works great in the general case while the app is running, but when the app first starts, I need to initialize the ...
3
votes
2answers
2k views

Create a SortedMap in Java with a custom Comparator

I want to create a TreeMap in Java with a custom sort order. The sorted keys which are string need to be sorted according to the second character. The values are also string. Sample map: Za,FOO ...
3
votes
3answers
2k views

Scala 2.8 TreeMap and custom Ordering

I'm switching from scala 2.7 and ordered to scala 2.8 and using ordering. It looks quite straight forward but I was wondering could I make it a little less verbose. For example: scala> case class ...
3
votes
2answers
787 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 TreeMap to J2ME 1.2 ...
3
votes
2answers
3k views

Java TreeMap equivalent in C#?

Most places I've consulted say to use SortedList, but the problem is that the program I'm porting actually uses duplicate keys (differentiated by order), which is permissible with TreeMap, but not ...
2
votes
1answer
45 views

TreeMap returns null value in field that was just changed

I'm trying to count the frequency of words in a TreeMap. I'm reading a file and passing the lines to a StringTokenizer and converting it afterwards to a string word by word (currentword). If ...
2
votes
3answers
55 views

How to get last n elements of a Treemap

I have a TreeMap, that looks like this: TreeMap<Instant, HashMap<Type, Double>> The Instant values are representing hours of a day; for each passed hour a value is stored in my map. ...
2
votes
3answers
96 views

Which Java data object to use for multidimensional range matching?

Project Background: I am writing a map tile overlay class for java that can use gdal2tile.py tiles. Basically I will end up with thousands of jpg files that are in a file structure like "Zoom Level/X ...
2
votes
4answers
127 views

Need a fast alternative to Java TreeMap<Integer, Character> that can hold many mappings without slowdown

I am writing a Java program that uses a TreeMap and the performance slows down to a crawl once there are 10's of thousands of integer, character mappings. I was wondering if there is an ...
2
votes
5answers
193 views

Sorting Java TreeMap by value not working when more than two values have the same sort-property

I want to sort a Java TreeMap based on some attribute of value. To be specific, I want to sort a TreeMap<Integer, Hashset<Integer>> based on the size of Hashset<Integer>. To achieve ...
2
votes
3answers
225 views

Java Sort a Guava TreeBasedTable

I have a TreeBasedTable object from Guava (Gooogle Collections). It is in the form of TreeBasedTable<k1, k2, v>. k1 and k2 implement Comparable. Now when I display the table, I want the user to ...
2
votes
2answers
204 views

Java - Loop Through a set of Objects

I have a map of key-value pairs of huge size, approximately 10^7, and I have to loop through it 15 times a second in order to update its contents Is there any class or structure that offers good ...
2
votes
2answers
117 views

Python 2.6 TreeMap/SortedDictionary?

Is there a built-in sorted dictionary implementation in Python 2.6, or are hashtables the only kind? Clarifications: I'm asking about sorted dictionarys, not ordered dictionaries!
2
votes
11answers
2k views

Java List Sorting: Is there a way to keep a list permantly sorted automatically like TreeMap?

In Java you can build up an ArrayList with items and then call: Collections.sort(list, comparator); Is there anyway to pass in the Comparator at the time of List creation like you can do with ...
2
votes
2answers
365 views

Mixing Java with Scala in order to use a mutable TreeMap

In Java I can do something like the following: TreeMap<Double, String> myMap = new TreeMap<Double, String>(); If I want it sorted in reverse order, I can provide a Comparator such as ...
2
votes
3answers
304 views

Treemap Problem

I am trying to count frequency of words in a text file. But I have to use a different approach. For example, if the file contains BRAIN-ISCHEMIA and ISCHEMIA-BRAIN, I need to count BRAIN-ISCHEMIA ...
2
votes
3answers
134 views

Sorting an int array, tied to a string array in Java

I have two arrays: int[] intArray = new int[]{point1,point2,point3,point4}; String[] strArray = new String[]{worda,wordb,wordc,wordd}; Now, I want to sort intArray in numerical order, such that ...
2
votes
3answers
328 views

Does a TreeMap's entrySet() return a TreeSet

Does the entrySet() function that is called from a treemap instance return a TreeSet of entry's or simply a set of entry's.Is the order ensured? Instead of getting it as a set of entry's how can a ...
2
votes
3answers
910 views

Consistent Equals() results, but inconsistent TreeMap.containsKey() result

I have the following object Node: private class Node implements Comparable<Node>(){ private String guid(); ... public boolean equals(Node o){ ...
2
votes
2answers
93 views

How to set a class of my creation to be a key in a TreeMap (Java)

I created a class DateTime (which wraps GregorianCalendar). I also created a class Event. I would like to create a collection of events from which I can retrieve an event by its date. For instance: ...
2
votes
3answers
983 views

Strange behavior of Java's TreeMap put() method

I have the following code, which splits up a Vector into a string vector (to use as a key) and an integer at the end (to use as value). payoffs.put(new Vector<String>(keyAndOutput.subList(0, ...
1
vote
2answers
22 views

Does using an Iterator over a TreeMap in Java interfere with the order of keys?

I want to know that if using an Iterator over a TreeMap in Java interfere with the order of keys?
1
vote
4answers
36 views

Java TreeMap Nested , clear erase all data while new not

I am using nested TreeMap [UserMap [LibraryMap [BookMap]] When I used BookMap.clear() instead of new , it clears all data and I remain with last 2 entered data in BookMap. Do I need to create new ...
1
vote
0answers
10 views

InfoVis Treemap dynamic data from another file

I have code from example 1.js (link give below) here that variable json contains json data,instead of specify this data in this file i want to refer from another file which will help me making the ...
1
vote
3answers
38 views

How do I keep a map with keys and a list of sets?

So I am trying to put a string of words as a key into a map, and a set of strings as a value into the map. Person1 is just a string of words, and Person2 is a set. Map<String, ...
1
vote
7answers
232 views

Find element position in a Java TreeMap

I am working with a TreeMap of Strings TreeMap<String, String>, and using it to implement a Dictionay of words. I then have a collection of files, and would like to create a representation of ...
1
vote
4answers
64 views

TreeMap returning null for value that should exist for some object keys

I have an issue with a TreeMap that we have defined a custom key object for. The issue is that after putting a few objects into the map, and trying to retrieve with the same key used to put on the ...
1
vote
3answers
71 views

Suitable Java data structure for parsing large data file

I have a rather large text file (~4m lines) I'd like to parse and I'm looking for advice about a suitable data structure in which to store the data. The file contains lines like the following: Date ...
1
vote
3answers
75 views

Searching an object in a java map

I am new to Java, I was working with Map class and its derivatives. I was just wondering about how elements are found inside them. Is only a pointer/reference check performed? Let's say I have a ...
1
vote
2answers
46 views

Java TreeMap single creation

I have this application that requires the creation of TreeMap<>() and this map only requires to be created once. I have the code to create the map and it works. I also have working methods to save ...
1
vote
1answer
64 views

TreeMap doesn't sort

public int compareTo(Object o) { Doctor d = (Doctor)o; return (doctor_name.compareTo(d.doctor_name)); } This is my comparable in Doctor class jTextArea.setText(""); int doctor_id = ...
1
vote
1answer
82 views

update Map key's value java

Ok I have this code: TreeMap<DateTime, Integer> tree2 = getDatesTreeMap(); DateTime startx = new DateTime(startDate.getTime()); DateTime endx = new DateTime(endDate.getTime()); boolean possible ...
1
vote
2answers
78 views

Display a treemap by values and keys

I'm displaying a TreeMap sorted by keys currently by using Map.entrySet(). However, I want to display the contents sorted by both values and keys. Is this possible? How would I go about it if it ...
1
vote
2answers
69 views

occurrence - TreeMap

I have a treemap containing occurrence of words like this ... TreeMap <String,Integer> occurrence = new TreeMap <String,Integer>(); String = Word Integer = amount of occurrence. How ...
1
vote
1answer
75 views

Labeling ParentNode - Protovis Treemap

I'm trying to label the parent node's of the treemap, but so far have only been able to successfully access the individual leaves of the treemap. Right now it does print the names of the parent nodes, ...
1
vote
2answers
142 views

Sorting custom data structure on Key in TreeMap

I am trying to sort a TreeMap on key. Key is some custom DataStructure having int, List, String, etc. The member on which I am expecting a sort has some duplicates. Let's say that member is Rank. More ...
1
vote
1answer
46 views

How to make a listener that listens for changes in a TreeMap?

I'm making a GUI which conjugates Spanish Verbs. It utilizes a TreeMap as the main data structure, which is filled with instantiations of the class Verb. Each instantiation includes a String which ...

1 2 3