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
5answers
59 views

storing single values from an arraylist into an array

I want to get values from an arraylist so that I can graph them but I am having trouble getting them into an array. In this loop, I am looping over my sorted hashmap and attempting to store values in ...
0
votes
1answer
30 views

NPE in my own graph class using HashMap

This is for a school project. We're supposed to write a program handling graphs with the help of a HashMap. Each node (or corner?) has a key (which is another node to which we have a connection) and a ...
0
votes
1answer
87 views

android listview with item and sub item not working properly

I have a database which i select 2 strings one as an item other one is description.I am trying to map these 2 strings into a listview item-subitem layout. the following code is what i tried so far. ...
0
votes
5answers
84 views

replace nil values with zero in hash map

I have a hash map in clojure which contains some nil values. I am trying to group the data and sum the values, this gives me a null pointer due to the nil values. Can someone please advise on how I ...
-3
votes
5answers
68 views

How to get the first four values from Hashmap

Here is HashMap<Integer, String> for storing value, and String associated with this value. As far as I know, when you put value and String into the HashMap, which will sort by the value ...
3
votes
1answer
56 views

Javascript: access an object property whose name starts with a number

I'm creating a Javascript / jQuery application. I need to process a JSON response that represents a HashMap, like this: { "accounts": { "MediaFire": { "provider": "MediaFire", ...
0
votes
1answer
87 views

In search of some guidance regarding HashMap

I'm making a Sudoku Solver program in Java, which uses backtracking and bruteforce for the solving algorithm. The problem I seem to be having is that when I insert the correct values in a simple ...
1
vote
2answers
112 views

How to Get All the Min Values from a Hash Map in Java

I have a Hash Map with Keys objects of type Request and Values of type Integer. I use the following code to iterate through the map and get ALL the minimum values and then add their keys to a list. I ...
0
votes
1answer
102 views

Nested Map in Haskell

What I trying to do is when I have rec1 = [("name", "obj-1"), ("status", "up"), ("region", "us")] then I would like to have [( "us", [("up", [("name", "obj-1"), ("status", "up"), ("region", ...
0
votes
1answer
46 views

How do I create nested hashmaps of mixed types?

I'm new to Java and I have a problem that I can't figure out how to solve. I have an existing HashMap that looks like this: [ { linkText=Link Text, link=http://www.someurl.com, ...
0
votes
1answer
44 views

TBB concurrent_hash_map operator[] or similar access?

Is there a reason why you can't access the concurrent_hash_map using the square bracket operators? I've been doing this in order to ease the code readability (on keys that should be in the map): ...
2
votes
1answer
44 views

How to build a hash in javascript and post it to the server

I'm building a RESTful web application with ruby + sinatra. The data is stored in a MongoDB database and I use MongoMapper to do this. One of my models has a nested hash key: {'Key' => ...
0
votes
1answer
46 views

How can I ensure the ids for the new Students is unique

I have reading a file which set the ids to unknown and i have creating a uniqe id for each student and I wrote then to a file, for example if create Student and add it to the list (HashMap). How can ...
0
votes
6answers
59 views

ensuring all the ids value in the hashMap are different?

The method below (generateID())it generate a random ids, And when i store students in the HashMap i want to check if the generated id is not exist in the hashMap value and if its exists I want to ...
1
vote
1answer
66 views

Hashmap with constant-memory in C (without re-hashing) [closed]

I'm searching for an efficient implementation for Hashmap in C language the following needs: constant limit (which is going to be very high) to the number of buckets. I'm going to add more and more ...
0
votes
1answer
48 views

Ruby on Rails what does this hash output mean?

#<Hashie::Mash created_time="1366084479" from=#<Hashie::Mash full_name="alyssabri_" id="24110592" username="ally"> id="4350706" text="Some Text"> What does this mean? I get it when I ...
-3
votes
1answer
63 views

Why modulo equal to & for values of base 2? [closed]

It is commonly used in java.util.HashMap /** * Returns index for hash code h. */ static int indexFor(int h, int length) { return h & (length-1); } where length is base 2. Or Lucene bloom ...
0
votes
2answers
52 views

convert Object[] from a hashmap keyset to String[]?

Set<String> keys = mappings.keySet(); String[] keyArray = (String[]) keys.toArray(); String hashmapDetails = ""; for(int p=0; p < keyArray.length; p++){ String[] details = ...
0
votes
2answers
68 views

hashmap is different outside of while loop

I'm not sure why the hashmap is printing out different things inside this while loop and outside of the while loop. I declared the map outside the while loop, so I assumed that it should be the same ...
0
votes
1answer
72 views

Error when checking the OS on c++ header file

I have received some C++ code that I am trying to compile under Linux 64 bits using the provided makefiles. In that code there is a string_hash.h file containing the code: #ifndef STRING_HASH ...
4
votes
2answers
388 views

hash table for strings in c++

i've done in the past a small exercise about hashtable but the user was giving array size and also the struct was like this (so the user was giving a number and a word each time as input) struct data ...
0
votes
2answers
70 views

Sort arraylist a,b,c based on arraylist d

I need to sort a couple of arraylist based on another array but don't really know how to go about it.I have the list distance and i sort it using collections. that works perfectly but i want to sort ...
0
votes
3answers
105 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 ...
5
votes
1answer
114 views

How to print all words stored in a Tree , wherin trie has been implemented using Hashmap in Java?

I want to print or retrieve all the words stored in Trie Data Structure. This is because I want to compute Edit distance between a misspelled word and a word in Dictionary. Therefore I was thinking ...
0
votes
0answers
35 views

Java. Returning multiple values with one key from a text file

I have a big text database that looks like this: ItemA_SubItem1A:ItemA:SubItem1A ItemA_SubItem2A:ItemA:SubItem2A ItemA_SubItem3A:ItemA:SubItem3A ItemB_SubItem1B:ItemB:SubItem1B ...
2
votes
2answers
53 views

How to retrieve Ruby/Sinatra params from array of params?

My ExtJS frontend sends such a param hash to my Sinatra backend: {"_dc"=>"1365959782607", "page"=>"6", "start"=>"250", "limit"=>"50", ...
0
votes
0answers
67 views

Thread Server-Client ( HashMap+Sockets+MultiThreads)

I'm sorry if topic what is same like mine exist. I'm sorry for me english too. What is the problem ?. I musst write MultiThread Server and I can't "synchronized" Thread from a Client. I thoguht I ...
0
votes
0answers
24 views

Viewpager, save checked button

I use viewpager with button list (for multiple choice questions). I want to save checked button when I swipe to other pages, But it gives me NullPointerException error on line " ...
0
votes
4answers
66 views

HashMap value auto increment

when I was coding, one question occurred to me, which is if the value part(Integer) in the HashMap is able to auto-increment in the following scenario? Map<String, Integer> dictionary = new ...
2
votes
0answers
59 views

Randomization using hash() method in Java HashMap [closed]

In the HashMap implementation in Java, after computing the hash value of the key object, I guess that the function, hash(int hashvalue), is used on it to further randomize the hash values generated. ...
0
votes
1answer
45 views

Concurrent Modification Exception in Hashmap while using the same Hashmap in two threads

I am developing a multi-player snake game played over the network. It is running fine however it occasionally throws java.util.ConcurrentModification Exception. This is thrown in the main class of my ...
0
votes
0answers
17 views

TorqueGeneratorTask apache torque, Ant task

Does any of you know how to pass name value pairs for an ant task that takes Map as a parameter. The question is about TorqueGeneratorTask extends Task (custom ant task). It has below method public ...
0
votes
4answers
57 views

Efficient algorithm for replacing occurrences of tokens in an infinite stream

Given a map of strings, such as the following: {'ABC': 'BCD', 'key': 'book',........} And an infinite stream of text, such as: "Sally had a key and a book with the ABC..." What would be an ...
2
votes
2answers
100 views

Loop through an ArrayList of HashMaps Java

ArrayList<HashMap<String, Integer>> myList = new ArrayList<HashMap<String, Integer>>(); HashMap<String, Integer> check = new HashMap<String, Integer>(); I ...
1
vote
1answer
82 views

Binding HashMap to ComboBox

Does anybody have an example of how to binding the keys of a HashMap to a ComboBox so that the changes in the HashMap are instantly reflected to the ComboBox? Thanks! EDIT: Solution thanks to ...
1
vote
3answers
139 views

Hashmap in multithreaded environment when doing resizing

I am following a tutorial and it basically explains about the cause of race condition which happens when resizing Hashmap in a multithreaded environment: In Java, if two thread at the same time ...
0
votes
0answers
48 views

Comparing two hashMaps in Java

I am writing a program that essentially splits two documents up into six word sections and compares them to see if any parts are similar. I just had a quick question on what would be the best way to ...
0
votes
0answers
13 views

Using a hashset to break up a .txt file

I am trying to write a simple plagiarism program by taking one file and and comparing it to other files by splitting up each file every six words and comparing then to the other files, which is also ...
0
votes
1answer
102 views

HashMap a function which contains ArrayList

How can I put the sheetData from my function below into a Hashmap? private static void showExcelData(List sheetData) { for (int i = 0; i < sheetData.size(); i++) { List list = (List) ...
3
votes
5answers
62 views

How to treat keys of HashMap as optional in java [duplicate]

While using Map as a function argument, only values for 3 keys are populated. However when this function is invoked in another function, the user populates values for initial 2 keys and he does not ...
0
votes
1answer
28 views

Weird behavior of VirtualKey codes in java

I am getting keyboard input from a phone, and trying to display that on the computer using the robot class. Since I get ascii from the phone, I have a hashmap for ascii to VirtualKey value ...
0
votes
3answers
62 views

What type is a HashMap bucket

I've been digging into the HashMap implementation in Java. All values are stored in a 'bucket' that is an Entry object. I was expecting it to be a collection or am I missing something here?
1
vote
3answers
109 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
1answer
65 views

UTHash multilevel hash table crashing on HASH_FIND_STR

I have two structures like so: struct item2_map{ char stringkey[MAX_SIZE]; UT_hash_handle hh; } struct item1_map{ int key1; struct item2_map *item2_map; UT_hash_handle hh; } In my code I do ...
0
votes
0answers
48 views

How to change the duplicate values with empty in arraylisthashmap in android?

i want to change duplicate value with empty in arraylist hashmap how can we change the duplicate value with empty you can see i have TAG_ALPHAABET in that i store 0 to 9 and a to z i want to ...
1
vote
1answer
38 views

Proguard and HashMap<String, MyObject>

I'm developing some apis for android as a library project and I'd like to export them as an obfuscated jar. I have various classes but the only public entities are: MyInterface: An interface ...
0
votes
5answers
100 views

Clojure 2d list to hash-map

I have an infinite list like that: ((1 1)(3 9)(5 17)...) I would like to make a hash map out of it: {:1 1 :3 9 :5 17 ...) Basically 1st element of the 'inner' list would be a keyword, while second ...
1
vote
2answers
77 views

Concurrency issues and hashmap

I am starting to think about multithreading for my game and the best place to start would be to seperate the three main components of the game: logic, gfx, sfx, into 3 seperate threads. The problem is ...
0
votes
0answers
20 views

Spinner Dynamic from Database

I have spinner dynamic like : Spinner spin_transaksi; String[] kodetransaksi = { "PM1", "PM2", "PM3", "PL1", "PL2", "PL3" }; HashMap<String, String[]> hash_kodetransaksi = new ...
0
votes
1answer
82 views

Fastest of the following Mapping objects (Dictionary,Tuple,KeyvaluePair)

Currently i have a mapping setup like this //Identifiers to save (currently) Dictionary<string, Dictionary<string, string>> toSaveIdentifiers = new Dictionary<string, ...

1 2 3 4 5 56