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
1answer
22 views

Calling Array#delete_at on a cloned hash changes the original hash too?

I ran into a bit of a strange issue, if I attempt to call delete_at on a cloned Hash which happens to have an array as one of it's key-values it will also delete from the original Hash. Is there any ...
0
votes
0answers
59 views

How to put a hashmap (key, value) data into a spinner?

im a bit noob on android, i want to create a spinner with company names, and i want to create a hashmap because i have an ID for each company Name, here is my code: JSONObject mainJson = new ...
0
votes
2answers
122 views

Why is Map<String, int> list = new HashMap<String, int> not permissible?

So as you can see be title I am confused on: Map<String, int> list = new HashMap<String, int> I am a bit lost in class on this specific topic and would appreciate if anybody could ...
0
votes
3answers
79 views

Replacing switch statement with HashMap

I have a socket class which receives packages (byte arrays). Every package has an integer in order to identify its type. Every case in the switch statement looks like this: ...
0
votes
1answer
83 views

Hibernate HashMap mapping

I am new to hibernate and I need to map an existing class structure to the database. Right now I have a Player, Arsenal and Weapon class. Every Player has his own (one) Arsenal - no problem. In the ...
-5
votes
2answers
56 views

Iterating over sets of numbers

I have 3 different sets of numbers, for example a={1,3,4} b={2,6} c={0} the size of sets can be variable, e.g. one set with 5 elements, another with 3, etc. I have saved these values in a hashmap ...
0
votes
2answers
60 views

New HashMap is pointing to old HashMap

I'm trying to implement a graph algorithm using a HashMap with integer keys, and an ArrayList for the values. The key is the vertex, and the ArrayList is all of the vertices that are connected to the ...
1
vote
1answer
85 views

Using a hashmap to iterate over a list of hashmaps

I am using a hashmap to add similar values for each aclLine processed for (String aclLine : refinedFileContents){ if(Some condition) { staticVariablesMap.put("lineNumber", **lineNumber**); ...
0
votes
0answers
15 views

Splitting a text file into multiple HashMaps and compare them all

Ok I've seen multiple threads that are close to what im looking for but all of them want to just place a text file into one hashmap. The text file contains multiple stories which I have to split up ...
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
65 views

Is it possible to dynamically reload a form:select with values depending of the value of another form:select

I've a pair of state/city drop down selects in a form. The city drop down should be dynamically changed depending of the state selected by the user. I'm using jQuery with Spring MVC. My object of ...
0
votes
0answers
45 views

Java HashMap hash [duplicate]

I dive into the implementation of HashMap in SDK source code, but there is one method I can't understand. static int hash(int h) { // This function ensures that hashCodes that differ only ...
1
vote
3answers
42 views

Is it safe to concurrently modify entries of a HashMap… IF the size of the map is fixed and the entries are linked lists?

I currently have a fixed-size HashMap of linked lists, and I was wondering whether it would be safe to modify the values of two DIFFERENT keys by calling get() and then modifying the contents of that ...
2
votes
5answers
53 views

Java: How to reparse 'Array.toString' again in Array?

I have a array which I convert to string to use it as key in an hashmap. How is it possible to convert a string like this [5.0, -1.0, 2.0] again to an array consisting of three double values? PS: ...
3
votes
1answer
132 views

why hashmap is faster than hashset?

I have been reading/searching the reason why hashmap is faster than hashset I am not quite understanding the following statement. HashMap is faster than hashset because the values are associated ...
0
votes
0answers
36 views

Add items to hashmap in for loop

I'm trying to put items from a csv file in an hashmap. By adding items I mean categorizing them. The csv is filled with the answers from a question list. So the csv is build up like this: Person ...
-2
votes
1answer
99 views

HashMultiMap: different kinds of values, and example code? [closed]

I'm trying to create a HashMap mapping together three different values of two different types: a String key, and a String and integer pair of values. (I want to be able to sort the resulting ...
0
votes
2answers
78 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, ...
0
votes
2answers
44 views

Printing a hashmap in java?

So I have a hash map class, and it works fine, but I want it to print out the contents like so: 1 -> 101 -> 201 (this is a bucket for handling collision) 2 3 - > 103 - > 203 4 5 In ...
0
votes
1answer
59 views

Implementing a remove method in a java Hashmap?

So a hashmap is a hash-based implementation of a map structure in java. I've figured out how to get the hashmap put method to work, but I want to write a method that removes the key value pair, and ...
0
votes
1answer
33 views

hashmap.get(char c) returning null for only special chars only in linux

I don't understand this. It only happens in linux (runs fine on my machine). It only happens when there are special characters in the file that I'm reading. Could this be a problem with linux and ...
0
votes
1answer
88 views

Iterating a string through the key values of hashmap letter-by-letter to get sum

I have a HashMap set, and I take String input from user using Scanner. I want to take user input string then calculate width of entire message by adding values that they represent in the Hashmap. So ...
0
votes
3answers
61 views

How to get values. keys from HashMap?

I'm writing a simple edit text in Java. When the user open file will be opened in JTabbedPane. To get the file from it. I did to save the files opened. HashMap<String, Tab> hash = new ...
1
vote
1answer
42 views

Java: Issue with Nested Hashmap

I have a nested LinkedHashMap that looks like this: LinkedHashMap<String,LinkedHashMap<String,LinkedList<Long>>> map = new... The issue is that only 1 inner map is added per ...
1
vote
2answers
94 views

Collision resolution technique in custom hasmap implementation

This was for an interview . They asked me what would be a good way to implement a custom hashmap. To which i answered, if you have an array of say , n , elements. you can have an individual key ...
0
votes
3answers
75 views

How to create and push dynamic elements in HashMap

static Map<Integer,HashMap<String,HashMap<String,String>>> maps = new HashMap<Integer, HashMap<String,HashMap<String,String>>>(); I want to insert the elements ...
0
votes
6answers
72 views

How to print out HashMap value? Output like xxx@da52a1

I have 2 classes. Main.java import java.util.HashMap; import java.util.Map; public class Main { Map<Integer, Row> rows = new HashMap<Integer, Row>(); private Row col; ...
1
vote
1answer
46 views

Use values from HashMap only with right key

I`m trying to create a list of ImageViews with small images and to show big by clicking on them. I use parser in AsyncTask to download from site. At first step ("doInBackground") parser read urls ...
1
vote
2answers
116 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 ...
-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, ...
-2
votes
1answer
50 views

How do I implement a tree shaker operation? [closed]

I need an operation which I call shake_tree. I have implemented it using a recursive algorithm, using only basic ruby-Fortran (referencing the old quote "You can write Fortran code in any language."), ...
1
vote
1answer
70 views

How to convert a POJO to map / map to POJO in Android

My Question is : is there a tool like BeanUtils(apache) can be used in ANDROID? Please give me some hint. //here is a simple POJO public class Pojo{ private String name; private int age; ...
0
votes
1answer
54 views

Ruby object initialization: params, hash, vanilla?

I ran into some confusion over when/why or if it is just a matter of preference when initializing a method with a hash type structure. class Person1 attr_reader :name, :age def ...
4
votes
5answers
76 views

Are there any advantages between List<CustomObject> and HashMap <String, Object>

I am trying to implement a solution (in Java 1.6) where i need to store some values (for a set of properties) and thinking in three options considering the following three (Any other idea is of course ...
1
vote
1answer
49 views

Java statically defined dictionary / HashMap

I have a block of static data that I need to organize into an array containing hash maps. Specifically, I want to have a static object in my app that contains the time zone information like this: ...
2
votes
1answer
86 views

Replacing digits with Noun using hash map

My input sentence is: ram where are you After that i will get this parse tree: ' 2|TYPE|nx0e-VPadjn-Vnx1 1|RPron|nx-RP-S 0|NOUN|NXN 3|NOUN|NXN ', '1' I want to replace 2 with 'are' 1 with ...
0
votes
1answer
56 views

Java - looping through LinkedhashMap and get the value

I have the following LinkedHashMap in which i put values in the following way: if (preAuthorizeAnnotation != null) { requestMappingValues = requestMappingAnnotation.value(); // to get the url ...
0
votes
1answer
115 views

Java Hashmaps word grouping won't return more than one ArrayList

For a homework assignment I have to create a program that will cheat at hangman. In order to do this I need to come up with a way of grouping words into families via the words letter locations. So for ...
1
vote
2answers
58 views

About Java HashMap sources

So, we have a HashMap, and a transient Entry[] table inside it. In many methods, for example, in clear(), we copy table: public void clear() { modCount++; Entry[] tab = table; for (int i ...
-1
votes
2answers
36 views

Unable to save a hashmap object into a file in andoid

I'am downloading lot of images from internet and storing into a hashmap and showing in a listview. I want to cache the images. For that, Iam storing the hashmap object into a file inside onDestroy() ...
0
votes
2answers
53 views

why putHashmap doesn't show in series the data?

I have to make a program where I will read data from an excel file and load this data into a table in a database. The table would have the name of the excel file and the fields of the table would be ...
0
votes
4answers
46 views

Creating a list of strings where each string, is a key, to a list of tuples (as value), in java

How can I create a list of strings where each string points to a list of tuples; In other words each string is a key to a list of tuples (as value)? Each tuple should be of the form : ...
4
votes
2answers
58 views

Debugging HashMap shows a recursive entrySet? What is it?

I am using an HashMap<String,Serializable> and while debugging I see the following recursively. What does that mean? Why is it so?
3
votes
5answers
69 views

Most efficient key object type in a hash map?

When using a HashMap, how much does the object type matter for element retrieval when it comes to speed? Say I use a loop to iterate through possible keys of a large hash map. What would be the most ...
-1
votes
2answers
37 views

How to get Map value

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.HashMap; import java.util.List; import java.util.Map; public class clsWarehouse { public ...
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 ...
0
votes
1answer
47 views

DLL include unordered_map is not compiling with visual studio compiler

I am trying to compile a DLL with MinGW and use it from an executable compiled with visual studio compiler. One of source files from DLL is using hash_map<> and it can be compile with MinGW ...
0
votes
5answers
99 views

HashMap and int as key

I am trying to build a HashMap which will have integer as keys and objects as values. My syntax is: HashMap<int, myObject> myMap = new HashMap<int, myObject>(); However, the error ...
0
votes
5answers
77 views

issue with sum of values for similar keys in ruby

I have the following array [["a", " 3"], ["a", " 5"], ["b", " 5"], ["c", " 2"], ["a", " 5"], ["a", " 5"], [ "b", " 4"], ["c", " 1"], ["c", " 2"], ["d", " 3"]] I am looking to get the following ...
17
votes
6answers
919 views

Is it possible to map string to int faster than using hashmap?

I understand that I should not optimize every single spot of my program so please consider this question to be "academic" I have maximum 100 strings and integer number for each of them, something ...

1 2 3 4 5 56