0
votes
2answers
57 views

How can I use map in this kind of situation in grails?

I need to display server info that are running up on ec2. I have managed to display them as a json, but now i only need to display certain fields. The following shows how I am displaying the ...
-3
votes
3answers
46 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.
1
vote
1answer
77 views

How efficiently can we store all tree nodes into HashMap?

We are trying to store all of tree nodes into a HashMap in a linear fashion (traversing node after node) and running into memory issues(OutOfMemoryError: Java heap space) with max memory set to 90mb ...
-1
votes
2answers
49 views

How to get the part of HashMap object?

For example I have: aaa 1 ccc 1 bbb 1 ddd 3 I need to assign a value to new HashMap object first three rows only, without the last row. How to do this? Input HashMap object represented as >String, ...
0
votes
3answers
40 views

What does `putForNullKey` method do inside the `put` method in hashmap?

Today I was fixing one defect and found a very interesting thing. I was trying to put a key value pair in hashmap. (I was assuming that key is there but later it was found to be null). So while ...
2
votes
3answers
79 views

hashtable and hashmap

What is the difference in the internal data structure of hashmap and hashtable that manifests itself in the following differences? Hashmap allows one null key while hashtable allows none. Hashmap ...
-1
votes
1answer
45 views

Implementing word counter [closed]

I am implementing a word counter. For every occurrence of a work I create a counter if none already exists and if it already exists I increase its counter value. I was just going to use a HashMap and ...
0
votes
4answers
36 views

Do we need the previous element in a linked list?

In the implementation of HashMap, linked lists are used to represent elements in buckets. Each Entry has a element to the next Entry. See: Ref. However, in the implementation for the LinkedList ...
0
votes
3answers
96 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
1answer
155 views

Java HashMap Hashing function [closed]

I was going through Java's HashMap hash() implementation , its like below final int hash(Object k) { // some checks h ^= k.hashCode(); // This function ensures ...
0
votes
2answers
56 views

Need help in choosing Collection type [closed]

I need to return a file ID (Integer) and success or fail (boolean) values from a method. I have 3 options in my mind. One is to convert the both the values String and make the return type as ...
-4
votes
3answers
106 views

Why HashMap should not be used in multithreaded environment? [closed]

Why HashMap can't be used in a multithreaded environment?
2
votes
1answer
70 views

Does ConcurrentHashMap implementation use cloning in remove operation?

I was reading an IBM DeveloperWorks article to understand how ConcurrentHashMap is implemented. The section "removal operation" suggests that the removal operation is a two step process: Find the ...
0
votes
5answers
82 views

Does a Collection which is Thread Safe have to be Synchronized?

I wanted to use Collection for only single threaded environment and I am using a HashMap that is synchronized. However, I still doubt if it is thread safe to have it synchronized or not.
2
votes
1answer
97 views

ArrayList<X> works as a key in a HashMap, but array of X[] doesn't work

I run into this problem when i tried to put the array and arraylist as keys in a Map. First piece of code: LinkedHashMap<ArrayList<String>, String> lhm = new ...
0
votes
7answers
224 views

Can we get value from hashmap without considering case of String key?

I want to access java.util.HashMap without considering case of the key. By this, I mean, if I add following entry to my HashMap: java.util.HashMap<String, Object> myMap = new ...
0
votes
0answers
138 views

HashMap<?, Collection<?> not updating

In an application I'm developing, I need to be able to save a list associated with another (multiple other?) package names. Everything works properly except for the performance saving part. Here is ...
0
votes
1answer
39 views

Retriving Mulitple values from hashmap

Data Class contains two feilds price (double), operator (string), I mapped the Data class as mulitple values to each key of the map shown below as 1). i am unable to show in the the code 2). all the ...
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 ...
0
votes
2answers
87 views

How do I iterate over (and make changes to) a collection that is the value of another collection

I have a map that maps bytes to sets of bytes. I want to walk through the map and make changes to the set. private HashMap<Byte, HashSet<Byte>> table; ... Iterator<Entry<Byte, ...
-1
votes
3answers
635 views

Iterating over hashmap [duplicate]

Possible Duplicate: How do I iterate over each Entry in a Map? How can I iterate over a map of <String, POJO>? I've written the following piece of code and am stuck on iterating ...
0
votes
2answers
170 views

Ensuring One Value per Hashmap bucket/slot

Is there a way to strictly ensure the number of entries per Hashmap bucket without tampering the the object.hashcode() function in Java? The Load Factor is an average: (# of entries) / (# of ...
2
votes
2answers
509 views

How to Sort a Map<String, List<Object>> by the Key with the most values (that are not numeric) assigned to it

I have been working with Maps at present and I am baffled by how I can get my program to work effectively. I can iterate over the map get the keys and values and sort them in alphabetical and reverse ...
0
votes
6answers
170 views

Safe cast to hash map

How can I safely cast a Map to a hash Map? I want to avoid class cast exception HashMap<String, String> hMap; public void setHashMap(Map map){ hMap = (HashMap<String, String>) map; ...
0
votes
1answer
235 views

How to add custom java object to HashTable

I have class called Items with some data as below: class Items { public String item1 ; public String item2; public int item3; } I have another Java class that sets values for this Items ...
0
votes
4answers
47 views

Put 2 maps into 1 map

I have 2 maps as shown below and I want the output as a new Map in the required format shown below? Please suggest if this is possible. Map<String,String> abc = new HashMap<String, ...
2
votes
4answers
67 views

map vs ?? for storing name and score

I used hashmap to store data. The problem is that I just noticed hashmap can't have more than one same key. What else should I use to store data which the data looks like this: Name1 100.0 Name2 ...
3
votes
4answers
333 views

How to pass to method TreeSet or HashMap and show it?

I have such method: public void show(Object o) { //show content of object } and I would like to pass to it TreeSet or HashMap. But its a different iteration, I mean, when I want to show a ...
3
votes
3answers
202 views

“Closed” HashMap in Java/Scala

Very often the performance bottleneck when using hash maps is the equals method. equals can be very expensive for deep data structures. Note, that the following is about immutable hash maps. Thus, at ...
4
votes
4answers
109 views

Java program runs fine but doesn't compile

I have a java program which runs properly. But when I try to clean and build it in Netbeans it is choking on this line: protected HashMap<String, ...
1
vote
6answers
88 views

Arraylist or hashmap for adding random integers while retaining uniqueness

Given an arraylist and Hashmap. And I want to add random integers to this collection.While adding have to check whether the value is already entered or not.If yes it should return true and ...
0
votes
2answers
95 views

how do i write this as a list<map<string, string> structure in java

how do i write this as a list structure in java In this case i want the structure to be like this, Where options is also a key in another hashmap called styles ...
1
vote
1answer
53 views

java customize a hashmap values

I am working on using a real time application in java, I have a data structure that looks like this. HashMap<Integer, Object> myMap; now this works really well for storing the data that I ...
3
votes
5answers
1k views

HashMap vs LinkedHashMap performance in iteration over values()

Is there any performance difference between HashMap and LinkedHashMap for traversal through values() function?
1
vote
2answers
293 views

Fail-safe collections/maps in Java [closed]

I'm looking for fail-safe collections/maps in Java which give me the freedom to edit data during an iteration. After googling I was able to find only two of them, namely ConcurrentHashMap and ...
1
vote
3answers
269 views

How to update a value for a key in HashMap?

I am having HashMap like this, HashMap<String,Set<String>> map = new HashMap<String,Set<String>>(); I am trying to do before adding an element in map, Want to check ...
0
votes
2answers
172 views

How to get the number of occurrences of a key in HashMap?

I am have the Hashmap like this, HashMap<String,String> epnSource = new HashMap<String, String>(); Now I have added the keys/values like this, epnSource.put("10.3.2.227","EPN1"); ...
0
votes
3answers
124 views

HashMap One key associated to a list

I have a list of objects that contain row data for a table. There are multiple columns in that table but I don't think that's an issue. The logic I need to apply would require only two columns. These ...
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
6answers
123 views

Java Set ordering

We all know that Set(Except their such implementation) doesn't guarantee of iteration ordering .So i tried to make sure this with below sample code . public static void main(String[] args) throws ...
1
vote
2answers
409 views

Java hashmap entry appears in entrySet but not entry table

I have a Java Hashmap that is getting populated within the program. For some reason the entrySet within the map contains what I am expecting, but when I look at the Entry table it is missing a value. ...
3
votes
1answer
375 views

What is alternative hashing for String keys in java 8?

java 8 is providing alternative hashing for String keys to improve performance when a large number of key hash code collisions are encountered. Can anybody explain what is that and how it will work?
-1
votes
2answers
1k views

How to Compare values of a single hashMap, without using other collections

m.put("A", al); m.put("B", al1); m.put("C", al2); I want to compare all the values of this HashMap. This is the HashMap with the String type keys and ArrayList<Integer> type values. I don't ...
0
votes
2answers
219 views

ModCount in map and list

While Debugging the collections in eclispse I just Inspect that there is thing called modCount for example if we debug list we will see while inspecting in debugging what this modCount ...
-2
votes
3answers
2k views

adding the same key twice in the Map

I was doing research on Maps and I discovered that if I add the same key twice deliberately then the size of the Map remains the same. What's the technical reason behind this? Map map=new ...
0
votes
2answers
651 views

Creating custom Hashmap()

This question I am asking on the basis of my research as I was going through the source code of hashmap in decomplier , please advise Can I also create my own custom HashMap as the java HashMap is , ...
0
votes
5answers
940 views

Retrieving the value of hashmap with simple core java code

I have following query that is I have this below is the hashmap class.. HashMap map=new HashMap();//HashMap key random order. System.out.println("Amit".hashCode()); ...
-8
votes
4answers
106 views

Regarding collision in Map

I was going through HashMap and read the following analysis .. An instance of HashMap has two parameters that affect its performance: initial capacity and load factor. The capacity is the ...
-1
votes
3answers
53 views

Regarding a list and map

I was doing a research let say I have below array list List list=new ArrayList(); list.add(1); list.add(1); list.add(2); list.add(3); list.add(3); Now as I can ...
5
votes
3answers
1k views

Regarding HashMap implementation in java

I was trying to do the research on hashmap..and come up with following analysis HashMap is an array of Entry objects... Each Entry object represents key-value pair. Field next refers to other Entry ...

1 2 3