-3
votes
3answers
43 views

Is that possible to sort HashMap by Arrays.sort [closed]

I would like to sort an array using Arrays.sort. I know that it should be done by Collections.sort but the teacher wanted use of Arrays.sort is that possible? I would like to pass comparator.
0
votes
1answer
33 views

strange behavior of sort in racket

I have the following defined: (struct type (parent dirty) #:mutable #:transparent) (define types (make-hash)) (define (add-key predicate parent) (begin (hash-ref! types ...
0
votes
6answers
64 views

New to HashMap : how can I sort it?

So I have a HashMap looking like this : HashMap<Movie, Float> movies; It contains some movies with their global ratings as floats, and I want to sort the movies from the best to the worst. ...
0
votes
1answer
30 views

HashMap and sorting

I am building a trie, each node has a hashmap with sons' value stored, and keys are their name. I'm using hashmap because, mainly, I need performances instead of sorting, instead I would have used ...
5
votes
3answers
79 views

First N values of a Map<K, V> sorted by value

I have a list of Strings. I want to evaluate each string based on a function that returns a double. Then I want the first 5 strings, based on their calculated values. If there are fewer than 5, I want ...
0
votes
2answers
76 views

Sorting an ArrayList of Hashmap<String,Object> by int value

I've been searching alot but I didn't find a suitable solution to my problem. Now I want to sort an ArrayList<Hashmap<String,Object>>according to an int value. HashMap<String, ...
1
vote
2answers
111 views

How to sort the arraylist from hashmap?

Im using hashmap and arraylist... How to sort the arraylist ? eg) In hashmap values are in order like one,two,three,four,five but i stored these values in arraylist the order changed like ...
0
votes
3answers
106 views

Sorting HashMap<String, String> with integers as Strings

I'm trying to sort my HasMap ArrayList so my listview is sorted by values but I'm not getting it. Basically I have several keys and one of them is "type" which holds values like "1", "4", "3",.... I ...
1
vote
3answers
110 views

Java Map vs Array (Temp) Sort of Last Index

I have looked at similar questions that detail the sorting of Maps and sorting of arrays of primitive data types, but no question directly details the difference between a one-time sort of a Java Map ...
0
votes
0answers
39 views

How to Sort a keySet by Corresponding Values [duplicate]

First of all let me say, please dont answer this by saying "just use a TreeMap" I am aware of TreeMaps but specifically want to learn if the following is possible. In Java, lets say I have a HashMap ...
1
vote
4answers
93 views

Sorting HashMap values in Java not giving back right order

I am having some problem with sorting HashMaps with values in Java. My code is: @SuppressWarnings("unchecked") Map<String, Integer> scores = ((HashMap<String, Integer>) ...
0
votes
3answers
92 views

Sort HashMap basis on Object's member variable from value [duplicate]

Have one class class Employee { int id; String name; } and one map which contains this object in value Map<Integer, Employee> map = new HashMap<Integer, Employee>(); Now I ...
0
votes
5answers
181 views

Get top 10 values in hash map

I am trying to figure out how could I get the top 10 values in the hashmap. I was initially trying to use TreeMap and have it sort by value and then take the first 10 values however it seems that that ...
0
votes
0answers
73 views

Sorting arrayList of Linked Hashmap gives some trouble

I do see some questions in the same line with sorting Linked Hashmap. However i am seeing this issue little unique from other ones. I have arrayList (in fact sorted one) and am using the same sorted ...
0
votes
5answers
114 views

Sorting a collection of HashSets

I apologize if this is a duplicate, but I couldn't find any answer that specifically answered this particular issue. I have a HashMap that contains a string key paired with a Set value. I want to ...
0
votes
5answers
84 views

How can I sort a map contains another map by numbers

I have a HashMap of type: HashMap<String, HashMap<String, Integer>> This HashMap has values like {name, {dateasString, numberOfTasks}} I want to sort this by numberOfTasks. I can't ...
2
votes
2answers
126 views

Sorting Map by value [duplicate]

Possible Duplicate: TreeMap sort by value Please have a look at the following code import java.util.HashMap; import java.util.Map; public class Mapper { Map mMap; public Mapper() ...
6
votes
4answers
2k views

Java Map sort by value

I was looking for ways of sorting Map<String, Integer> by values. I found this post, which solved my sorting problem, but not exactly. According to the post, I wrote the following code: import ...
0
votes
3answers
481 views

Android listview sorting using xml parsing

I am having a bit of trouble with android. I have a sorted listview of items retrieved from a database using xml parsing. i have to display the product on list view with sorted by price This is my ...
1
vote
2answers
118 views

Sorting values in a HashMap

I have a HashMap<Character, Integer> and I'd like to place the values into a PriorityQueue in ascending order of the integers. I'm having trouble thinking of a way to do this. I have a Node ...
0
votes
1answer
60 views

Sort collection by multiple keys

I want to sort a Hashmap by multiple keys, at the moment i use the following code Collections.sort(ilv2, new Comparator<HashMap<String,String>>() { public int ...
1
vote
5answers
313 views

Sort Array of Hashmap by ascending time

I have an Array of Hashmap and each hashmap contain 24 hour time as key-value pair. I want to sort this array in ascending order of time. how can i achieve this? here is snippet of my code: ...
2
votes
4answers
316 views

How I sort the elements of a HashMap according to the values in it? [duplicate]

Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? I have the following HashMap HashMap<String, Integer> counts = new HashMap<String, Integer>(); ...
0
votes
3answers
78 views

Ordering a HashMap

Good evening. I need to organize an HashMap, and it is something like this: private HashMap < String , Vector < Task > > tasksOrdered = new HashMap < String , Vector < Task > > (); ...
3
votes
4answers
337 views

java - sorting a hashmap with date inside value object [duplicate]

Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? Suppose am having a map like Map<String, Student> studDetails = new HashMap<String, Student>(); ...
0
votes
2answers
181 views

Sorting an arraylist of hashmap according to a value field of the hashmap

Basically, I have an arraylist declared like : private ArrayList<HashMap<String, String>> songsList = new ArrayList<HashMap<String, String>>(); ...
0
votes
3answers
860 views

Sort HashMap with duplicate values

Hi I am using following code to sort my HashMap, it sorts the map correctly but does not count the repeated values, Map<String,Integer> mymap = new HashMap<String,Integer>(); ...
1
vote
6answers
118 views

not sure if I should search or sort my hashmap

Hi I have a list of people with their ages, I need to find those who are more than 30 years old, is there any possibility to search in a hashmap ? (please note that I may need to look for those in ...
0
votes
10answers
3k views

java.lang.ClassCastException: java.util.HashMap cannot be cast to java.lang.Comparable

I was trying to sort my ArrayList. java.util.ArrayList arList= new java.util.ArrayList(); arList=getList(); java.util.Collections.sort(arList); where my getList() function here public ...
0
votes
2answers
92 views

How do I get the list of possible values in a HashMap<String, Integer>? [duplicate]

Possible Duplicate: How do I iterate over each Entry in a Map? I'm writing a program that will take an input (data), which is an array of strings, and return them in order of frequency of ...
1
vote
2answers
73 views

Sorting hash function and Compile error

I used this method to sorting my hash function. When I compile the program, these errors appear: Note: Retriever.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for ...
0
votes
1answer
163 views

Sorting HashMap using absolute values of doubles

I am attempting to sort a hashmap on type <Integer,Double> using a TreeMap and a SortedMap I want to sort on the absolute values of the Doubles but I also want to retain the sign value (hence ...
0
votes
4answers
782 views

java HashMap sorting <String,Integer> . How to sort it? [duplicate]

Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? In my project, I have taken a HashMap like this HashMap degree = new HashMap(); Suppose I have: ...
0
votes
5answers
118 views

Sorting map according to user defined criteria?

I have a map in which I want some values to be come on top. HashMap<String,String> hm = new HashMap<String,String>(); hm.put("Phone Number","998291829"); hm.put("Address","12 A Street"); ...
3
votes
3answers
123 views

Getting an array of keys from a hash ordered by the hash's values

I have a hash which is something like this {"red" => 3, "blue" => 1, "yellow" => 3, "green" => 1, "black" => 4} I want to sort and display the top three colors in the order of the ...
1
vote
3answers
118 views

Java structure suggestion for a sorted list of pairs with unique keys

A structure k => v (k and v are >=0 ints) where all k are unique while v may be equal (k1 => v and k2 => v) should be sorted in ascending order of v values, for example: Let we have [35 ...
0
votes
3answers
162 views

LinkedHashMap ordered by value

I'm trying find a structure similar to a LinkedHashMap that sorts it by its value. I'll need to be able to update the values. I'll be checking the order very often, so I need a solution that avoids ...
0
votes
2answers
255 views

How to sort hashmap String, Collection<String []>> by String[index]

i want sort this Map: Map<String, Collection<String[]>> map = new HashMap<String, Collection<String[]>>(); In map is for example: String key = "MyKey"; ...
2
votes
2answers
267 views

Sort HasMap List

I have google'd it, and tried some examples, but I always get stuck. This is the error message, when I try to use the Collections.sort: The generic method sort(List<T>) of type Collections ...
0
votes
1answer
137 views

Sort Object HashMap (not by key)

So I have several objects in a HashMap: private HashMap <String,Object> hmap; what I want to do is sort this objects through a variable of the objects (a double). How should I do this? I think ...
3
votes
1answer
252 views

Optimal way of creating a SortedSet from a number of HashMap objects

I have a number of HashMap data structures containing hundreds of Comparable objects (say, of type MyClass) and need to put all the values (not the keys) in a single data structure, and then sort it. ...
1
vote
3answers
641 views

Sort the Object's value inside the Hashmap<String, Object>

I want to sort an Hashmap by the object's value. In this case, by country code. KEY OBJECT String LoyaltyCountry - country name ...
0
votes
3answers
149 views

Java sorting and HashMap

I have a HashMap How can I sort this data structure and keep the key-value mappings? I want to sort by VALUES not keys. Collection<Integer> counts = tableFrequency.values(); But then I lose ...
1
vote
2answers
1k views

How to sort Arraylist of LinkedHashMap Arraylist<LinkedHashMap<String,String>?

How can i sort Arraylist of LinkedHashMap Ex. ArrayList<LinkedHashMap<String, String>> list = new ArrayList<LinkedHashMap<String, String>>(); LinkedHashMap<String, ...
0
votes
2answers
106 views

Java-Can we keep Regex match as Hash value?

I have a text file with names and Date Of Births, I need to sort by dates, Like Fname LastName dd-MM-yyyy Fname2 Lname2 dd-MM-yyyy Fname3 Lname3 dd-MM-yyyy Fname4 Lname4 dd-MM-yyyy ...
2
votes
1answer
1k views

How to Sort HashMap( inside ArrayList) in Android?

I am having Current Location Latitude & Longitude with me. I am getting the list of ATM's near by the user from the Google places API Web Service and storing my data in Arraylist like below. Code ...
3
votes
2answers
1k views

Java: How can I write HashMap <String, HashMap<Integer, ArrayList<Integer>>> to a file?

So i am able to write: HashMap<String, ArrayList<Integer>> ... but When it comes to a structure like HashMap<String, HashMap<Integer, ArrayList<Integer>>> ... I ...
2
votes
3answers
597 views

Sorting a HashMap, while keeping duplicates

I'm trying to sort a HashMap in two ways. The default way: alphabetically by the value, the second way: numerically by the key, with the higher number being at the top. I have searched around but ...
0
votes
4answers
93 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 ...
1
vote
3answers
2k views

How to sort HashMap<String, String[]> by String in android

I have this code: HashMap<String, String[]> unsorted = new HashMap<String, String[]>(); String[] values = new String[3]; String key; ...

1 2