A data structure that uses a hash function to map identifying values, known as keys, to their associated values

learn more… | top users | synonyms (2)

0
votes
0answers
11 views

how to solve it?? hashmap return more than one key?

I'm trying to retrieve the names of folders/sub-folders and the texts inside to maps, the names of folders will be the keys and the names of documents inside will be the values.. the names of all ...
-3
votes
3answers
40 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.
-2
votes
3answers
30 views

How to get values from inner object in the hashmap in java?

I have a HashMap. Object contains info like name, address, email. I am able to iterate HashMap but not able to get values from the Object. Here is my code if anyone can please show me a proper way to ...
-1
votes
3answers
46 views

How to put data into HashMap<key, Object>

I am a new to programming. I have a program that iterates excel file and put values into hashmap HashMapbut object in a hash map is always has last record. I'll post my code and may be you can tell me ...
0
votes
1answer
32 views

Confusion in the differences between hashmap and hashtable

I have a confusion: I have read in many posts that Hash-maps are implemented as binary search trees which makes the various operations time complexity of logarithmic order. Hashtables on the other ...
0
votes
1answer
28 views

Can't get value of Map<BigDecimal, String> by key

I have a map like Map<BigDecimal, String> functions = new HashMap<BigDecimal, String>(); When I try to access the value of map from a JSF page, it displays nothing. I checked the size ...
0
votes
0answers
18 views

GTK2{NOTEPAD} in BASH(ubuntu-10.04)::redirect VALUES(RC) in HASH using BASH FUNCTION

General_::Using GTK2 calling by bash V>=4.0 Specific__:: Using a GTK{notepad}, collecting some Parameters and show output on last page of notepad. Using a Hash (declare -A HxDATA) saving all ...
0
votes
0answers
25 views

How to save a List<HashMap<String,String>> to an SQLite db

I want to save a List<HashMap<String,String>> to my small db. How to achieve it.. I want to use this list in many activities of my app. Is there any other possible way to access this ...
0
votes
1answer
46 views

deep copy for a graph using hashmap does not work

I have a directed graph having edges as Map<E,Pair<V>>, and vertices as <V>. I want to have a copy of this graph and make some changes in the copy while the original graph does not ...
0
votes
1answer
18 views

How would I correctly implement parcel/parcelable in a Hash of objects in Java/Android

I have the following classes: Experiment and Measurements. I pass a HashMap containing Experiment objects as a value, and their Experiment.getExperimentName as a key, between Android activities. ...
-1
votes
1answer
47 views

C++ HashMap with multi-threading support [duplicate]

I have a need to use a HashMap/ HashTable implementation in C++ and i have the following requirements 1- When new data is being inserted in the hashmap the complete hashmap is not locked, and other ...
0
votes
1answer
40 views

Split a text file using delimiter \t and store in hashmap in java

I have a text file of n columns and n rows separated by tab space.. How do i use split function to store the columns and rows into a hashmap.Please help.My text file will be like.. Dept Id Name ...
0
votes
1answer
18 views

How to send a List to next Intent

I want to send this 'list' to the next class(HomeActivity).But i was trying to do it by sending extras but couldn't somebody please help me to fix this code protected void onPostExecute(final ...
0
votes
6answers
109 views

Update all values at a time in HashMap

I have a HashMap with some Keys - Values. On some condition I want to update all values to single value regardless of keys. Is there any util or predefined methods to do this, without for loop? Any ...
0
votes
2answers
51 views

Hashmap inside a list to process my text file

I have a text file to be read and processed (separated by one tab space) which is something like: GroupNum Id Name Address 1 1 john USA 1 2 mike Uk 2 3 smith ...
0
votes
1answer
33 views

How to send a List<HashMap<String,String>> list to another activity

I was trying to send List> list to another activity. I tried many ways but couldn't. Please help!
0
votes
1answer
20 views

Working with Java Trie, fails to identify word endings. Fails somewhere in recursion

I am trying to create my own version of a Java Trie in order to have one, and to gain the knowledge it requires to make one, but this project has me perplexed. I have a very basic broken Trie here. ...
0
votes
0answers
9 views

smooks hashmap to bean transformation

In our project we have integration with partners some of which use XML, Others CSV, we also have requirement to persist objects (using OpenJPA for the same). To make such transformations easy we are ...
0
votes
3answers
45 views

Why doesn't HashMap recognize its key, if the key is a String Array?

Let see these codes: HashMap<String, List<String>> testTree = new HashMap<String, List<String>>(); String k = new String("1"); String v = new String("2"); ...
1
vote
1answer
31 views

Double indexing in associative array

I'm building a server using Node.js. I store the objects representing my users in an associative array and right now the index of those objects are the sockets id of that connection. Using the ...
1
vote
2answers
42 views

Map.Entry next method?

I'm looking at the source code for JDK 7 - specifically WeakHashMap.java, where there is extensive use of this: Entry<K,V> p = prev; Entry<K,V> next = p.next; but next isn't a method ...
0
votes
1answer
25 views

Android Reading from txt to hashmap

I'm trying to make an app that reads from .txt file into a hashmap then prints a random hashmap entry on button click. But i am getting error like "FATAL EXCEPTION:main", i can figure out what the ...
1
vote
1answer
32 views

Avoid Unchecked Call Warnings

I have the following code (part of it) public class Garage<T extends Vehicle>{ private HashMap< String, T > Cars; private int Max_Cars; private int Count; public ...
-1
votes
4answers
53 views

Database to Java HashMap [closed]

Lets say i have a database with 2 tables: Car Model In Car I have the columns: carID carName: modelID: 0001 Toyota 123 0002 GM 456 In Model I have: modelID modelName ...
0
votes
2answers
31 views

Java (HashMap) - How to save and load an entrySet()?

I have 2 hashmaps and I want both to be saved when the menu button is clicked, and I want to be able to load them (In the example I'm saving just one). void saveHash(HashMap<String, Object> ...
-1
votes
2answers
42 views

When i need to use hashMap because it is not synchronized [closed]

I know Hashtable is synchronized, whereas HashMap is not. As per my knowledge synchronization means accessing a object at a time by one thread. So there is no problem while using Hashtable. But ...
0
votes
0answers
71 views

Adding data to Java HashMap not working properly

I am trying to add data in my Map. Data: category1 subcategory1-1 a,b,c category1 subcategory1-2 1,2,3 category1 subcategory1-3 c,3 category2 subcategory2-1 c,3 category3 subcategory3-1 ...
-4
votes
2answers
68 views

Take values from ArrayList<HashMap<String, String>> [closed]

I have a problem about getting a value from my ArrayList<HashMap<String, String>>. My code is: ArrayList<HashMap<String, String>> myArrayList; and then: HashMap<String, ...
-2
votes
3answers
63 views

how can i change the hash code of java class?

My doubt is, i have employee class which contains two variable id and name as follows: public class EmpBean { int id=10;; String name="uday"; } I have added this object into HashMap as follows: ...
1
vote
1answer
39 views

Must the .equals method for objects be overriden for instances of that object type in order for them to be used as keys in a HashMap

I am having trouble with Hashmaps. Currently, my HashMap is a HashMap of an enum called Names, using a key of Key Signatures, or HashMap<KeySignature, Names>. Currently, the Name Enum stores ...
0
votes
1answer
48 views

Creating a custom multi-key HashMap

I have been trying to create a custom HashMap which contains 2 keys. The user creates an object of my class with two parameters K and V. The class is made of 2 HashMaps: natively extended <Integer, ...
0
votes
2answers
45 views

Android drawing a path ON TOP of another path

So I am facing this weird problem in my drawing app. I drew these lines from 1 to 8 from top to bottom and from left to right. While I'm drawing the line, it shows as it's drawing Behind all the ...
1
vote
2answers
40 views

Hashmap values of existing keys getting overwritten upon using put to store a new key-value pair. how to prevent it?

HashMap<Integer, ArrayList<Integer>> map = new HashMap<Integer, ArrayList<Integer>>(); ArrayList<Integer> al = new ArrayList<Integer>();//arraylist as ...
3
votes
4answers
66 views

How can I store HashMap<String, ArrayList<String>> inside a list?

My hashmap stores the string as key and arraylist as the values. Now, I need to embed this into a list. That is, it will be of the following form: List<HashMap<String, ...
0
votes
3answers
60 views

Why should operator< be defined as non-member?

I do some test on hash_map, using struct as key. I define struct: struct ST { bool operator<(const ST &rfs) { return this->sk < rfs.sk; } int sk; }; and: ...
0
votes
3answers
34 views

memory allocation for hash map

I've hashMap with "Document" as keys and "DocumentSections" as values.Map <Document, DocumentSection> . Document has lots of other member variables (primitive and non primitive).Document has ...
5
votes
4answers
91 views

At which length is a String key of a HashMap considered bad-practice?

I try to pay attention to good performance and clean code all the time. I'm having difficulties trying to grasp whether it's sane to have a HashMap with keys of 150 characters. Is there an ...
0
votes
2answers
37 views

Finding a key in a hashmap [duplicate]

i have created a hashmap with Color Objects as keys. My source code looks like this: HashMap<Color,Integer> hm = new HashMap<Color,Integer>(); Now i would like to check if there is ...
0
votes
2answers
38 views

Ruby on Rails, Showing the hashmap array?

I was wondering is there a way to show the hash map array? I'm not sure if its the right terminology? But I wanted to see the columns from the database to see if I'm calling the correct hash keys. ...
0
votes
4answers
50 views

How to copy a HashMap to an ArrayList with different references

I am having a problem with the references of objects in Java. Here's the situation. Let's say I have an object class called MyObject. class MyObject { Long id; String item; ...
1
vote
1answer
20 views

Serialize HashMap like a Collection Property

Here I got two classes "Student" and "Course": @XmlRootElement class Student { private String name; private HashMap<String, Course> courses; public Student() {} public ...
0
votes
0answers
60 views

OutOfMemoryError: Java heap space for saving into HashMap

JAVA RCP application, Windows 7 32bit, jdk1.6.0_21, Eclipse Indigo, We have two revisions of same XML. Both are unmarshalled to tree. Then revisions are combined to make a superset Tree. On ...
-5
votes
1answer
52 views

Get ArrayList entry of a HashMap Entry [closed]

Here is a (hopefully) simple question. How can I get an entry in a ArrayList Object that is stored in a HashMap Object. I know that you can write by: stateIndex.put(nameOfEntry, arrayList); But how ...
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 ...
-1
votes
1answer
17 views

ArrrayList inside Hashmap in retrieving key values

private static Map<String, ArrayList<String>> loadValues = new HashMap<String,ArrayList<String>>(); static ArrayList details = new ArrayList<String>(); I enter 2 set of ...
-3
votes
3answers
65 views

HashMap: get(key) returns null [closed]

i'm having troubles with HashMap. I had syntax error before so I added brackets before and after put function (red that on StackOverFlow). HashMap<String, String> hm = new HashMap<String, ...
0
votes
0answers
23 views

Writing a map of BufferedImages to file

I am trying to write a Map of buffered images with a key of a String of names. I know that you can write multiple files with ImageIO. But my goal is to make one file (that is not layered) of images, ...
-4
votes
2answers
49 views

“The method put(Object, Object) in the type HashMap is not applicable for the arguments (String, boolean)” [closed]

hm.put("billingEnquiry",true); produces the error The method put(Object, Object) in the type HashMap is not applicable for the arguments (String,boolean)". How to resolve this issue?
0
votes
1answer
44 views

How to group the values which are in excel to a HashMap

i have the following excel: Method Name Status Code getLoggedinUserDetails 400 createRequisition 400 excelMDM 400 and i am able to print the values as they are in excel using ...
0
votes
2answers
51 views

Converting Python into Java and facing some issues

I'm converting the following Python Code into Java code as follows: import random howMany = random.randint(0,1000) stats = {} for i in range(howMany): value = random.randint(0,500) ...

1 2 3 4 5 56