Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
528 views

How do I form the union of scala SortedMaps?

(I'm using Scala nightlies, and see the same behaviour in 2.8.0b1 RC4. I'm a Scala newcomer.) I have two SortedMaps that I'd like to form the union of. Here's the code I'd like to use: import ...
4
votes
1answer
1k views

How to create sorted map in scala?

How to create sorted map in scala (mutable/immutable)?
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
3answers
206 views

A sorted ComputingMap?

How can I construct a SortedMap on top of Guava's computing map (or vice versa)? I want the sorted map keys as well as computing values on-the-fly.
2
votes
2answers
257 views

Finding the first value greater than in a SortedMap

I'd like to know what is there a better way to find the first value greater than an inputted value in a large SortedMap instead of looping through all values in my example below. Or if SortedMap is a ...
1
vote
7answers
231 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
3answers
82 views

Java HashMap sorting [closed]

Possible Duplicate: Java Ordered Map I have list of product object in the HashMap<Integer,Product> I want to do the sorting ProductName ProductCode Qty Price Pen ...
1
vote
3answers
221 views

Sorted container in Python

Is there a sorted container (like C++'s set and map) in Python? Is there a Python design decision (PEP) that precludes a sorted container from being added to Python?
1
vote
3answers
268 views

ConcurrentSkipListMap sorting: Can it be done by the value's compareTo?

In a game, I'm trying to keep a list of users and have it sorted by score, so that I could query the list at any given time and return (for example) the top ten users by score. This list should be ...
1
vote
5answers
11k 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 Comparable with the ...
0
votes
4answers
42 views

Get the list of keys where the values are equal for those keys

I require to get the list of keys where the values are equal for those keys from a HashMap. For example , my hashmap contains the below elements. Key Value 1 a,b 2 e,c 3 a,b 4 f 5 e,c ...
0
votes
1answer
48 views

Should I change from buffered read to in-memory/tokenize on Android app for reading a 100,000 line file?

Currently I am loading a text file that contains 100,000 lines into a SortedMap using buffered reads. Should I abandon this approach and instead load the entire file into memory and then tokenize by ...
0
votes
1answer
214 views

Cast TreeMap.Submap return: SortedMap, back to TreeMap

This seems too tricky for me to be doing this correctly. I have a TreeMap<Double, (user-defined)Object>, of which I am taking a submap: public static reqObj assignObj(reqObj vArg, int ...
0
votes
3answers
447 views

Improving performance of merging lots of sorted maps into one sorted map - java

I have a method that gets a SortedMap as input, this map holds many SortedMap objects, the output of this method should be one SortedMap containing all elements of the maps held in the input map. the ...
-1
votes
4answers
104 views

java - how to use sortedMap

I have a map<Float, MyObject> What is the best way to hold the map sorted according to the float. is SortedMap the best answer? TreeMap ? How do I use it ? (I only create the map once ...