0
votes
1answer
36 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
0answers
103 views

Which hash table implementation in C suits me best? [closed]

I have a fairly simple use case for a hash table. Besides creating and freeing the hash table itself, i pretty much only need add & find & delete for int and string keys. I prioritize speed ...
0
votes
1answer
52 views

Big O notation of looping through each character in a string before inserting into a map

I'm new to big O notation and have a couple of questions about it in my program. I have a program that has 2 maps. Before adding to one of the maps I loop through each character and randomly change ...
4
votes
2answers
366 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
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 ...
5
votes
1answer
185 views

Hash table/map implementation without dynamic allocations

Does anyone know of a C/C++ hash table/map implementation that does not dynamically allocate memory? I'm working on an embedded system that has no standard library & no heap (unless I want to ...
0
votes
1answer
160 views

Arduino Hash Table/Dictionary

I am trying to get a Hash Table or Dictionary to work on the Arduino Mega 2560. My goal is to have something like dictionary[ENGLISH]["ACCOUNT"] = "Account"; dictionary[ENGLISH]["DATE_AND_TIME"] = ...
2
votes
3answers
77 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 ...
0
votes
1answer
37 views

How is data retrieved from a HashTable in collision?

According to this, time complexity of search in a hashtable is O(1). However if there is a collision, then obviously this should be O(1) + something. My question is: When you say get(someKey) ...
-1
votes
3answers
100 views

How to store strings into hashmap/hashtable? [closed]

My CS fundamental is slipping away.... How do you store a large number of strings into hashmap/hashtable, so that you can have a lookup time of that string of O(1)?... Isn't there a java library for ...
0
votes
1answer
110 views

Separate chaining with priority queue (using std::map)

I just start learning hash table and while trying with std::map I come up with this question: when using separate chaining method to solve collision, can I use std:: priority_queue instead of just ...
3
votes
2answers
96 views

Why hashmap lookup is O(1) i.e. constant time?

If we look from Java perspective then we can say that hashmap lookup takes constant time. But what about internal implementation? It still would have to search through particular bucket (for which ...
10
votes
4answers
170 views

Java: A “prime” number or a “power of two” as HashMap size?

Many books and tutorials say that the size of a hash table must be a prime to evenly distribute the keys in all the buckets. But Java's HashMap always uses a size that is a power of two. Shouldn't it ...
3
votes
1answer
61 views

How does java manage hashmap size allocations that would cause it to perform poorly?

For example if I allocate a Hashmap of size 100, and if 100 buckets get created then wouldn't the Hashmap perform poorly? (As performing modular hashing will not distribute the keys evenly in all of ...
0
votes
1answer
91 views

Printing key when value is found in hash table

I am trying to print the key value(s) in a hash table when the value is found or exists. This code does not seem to work. Map<String,Integer> map = new HashMap<String, Integer>(); ...
8
votes
2answers
339 views

Efficient hash map container in haskell?

I want to count unique blocks stored in a file using Haskell. The block is just consecutive bytes with a length of 512 and the target file has a size of at least 1GB. This is my initial try. import ...
0
votes
2answers
32 views

if you want to create an object that holds arguments and parameters that represent a query string, what kind of object is best suited for this task?

In .net there is a class named WebClient which has a property named "QueryString" which is of type NameValueCollection (a collection of key/value pairs where each key can have one or more values). ...
2
votes
4answers
131 views

Sorting of Map based on keys

This is not basically how to sort the HashMap based on keys. For that I could directly use TreeMap without a wink :) What I have at the moment is Map<String, Object> favoritesMap = new ...
2
votes
2answers
81 views

HashTable Key vs Value Fetch Complexity

I just read an interview question that asked for the fetching complexity of a hash key vs a hash value. I always figured both to be the same, at O(1 + n/k) (where k is number of buckets). What am I ...
4
votes
4answers
194 views

Best practices on what should be key in a hashtable

The best look-up structure is a HashTable. It provides constant access on average (linear in worst case). This depends on the hash function. Ok. My question is the following. Assuming a good ...
0
votes
0answers
21 views

Creating a new hash in one line

Beginner at Rails here. Is there an easier way to create these hashes?: > person1 = Hash.new > person1[:first = "Uncle"] > person1[:last = "Mama"] > person2 = Hash.new ...
0
votes
2answers
81 views

Copying the hash table to new rehashed table

I have a question about rehashing. Let us say, we have a hash table of size 7, and our hash function is (key%tableSize). We insert 24 to the table, and 24 will be at index 3 since 24%7=3. Then, let us ...
0
votes
1answer
358 views

Rehashing in Hashtable

I have a question about rehashing. As far as i know, when the load factor (number of elements in the table / size of table) reaches 0.5, we use rehashing and by rehashing, we expect to decrease ...
1
vote
2answers
320 views

Time complexity for Java HashMap resizing

I am wondering what would be the time complexity on Java HashMap resizing when the load factor exceeds the threshold ? As far as I understand for HashMap the table size is always power of 2 an even ...
7
votes
4answers
92 views

java: maps zoo, what to choose

I'm pretty new to the Java World (since I'm writing primary in C/C++). I'm using maps in my apps. Since java.util.Map is abstract I need to instantiate it's implementation. Usually I use HashMap like: ...
0
votes
1answer
230 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
3answers
142 views

Hashing Function for Map C++

I am trying to determine a hash function which takes an input (i, k) and determines a unique solution. The possible inputs for (i, k) range from 0 to 100. Consider each (i, k) as a position of a node ...
-1
votes
1answer
2k views

Difference between hashmap , hashtable and treemap? [closed]

What is the difference between a HashMap and a Hashtable and a treemap in Java? Which is more efficient for non-threaded applications?
-6
votes
4answers
64 views

How to change HashMap as Synchoronized

Is it possible to change HashMap as Synchronized. If so, Please let me know how to change it.
0
votes
1answer
218 views

Regarding the example in Oracle's java online tutorial that uses HashMap to store anagram

I was reading the example in Oracle's online java tutorial that uses HashMap to store anagrams: // Read words from file and put into a simulated multimap Map<String, List<String>> ...
0
votes
1answer
72 views

Hashtag Hashtable

Does anybody know if twitter a giant hashtable or hashmap? If so is that where the whole "hashtag" colloquium came from? I only ask because I feel this would be a fairly cool bit of trivia/society.
0
votes
1answer
146 views

Ruby: Return data grouped by multiple columns

I'm trying group data for a web service. The web service is running on Ruby on Rails and I'm working in my API controller (lets call it the index action of my projects_controller. The table schema ...
2
votes
4answers
81 views

Java:Can reading from a HashMap change its state?

Concurrent updates to non-synchronized HashMap can obviously cause a livelock or other data corruptions; to avoid this, one should use the concurrent version or implement a synchronization mechanism. ...
-1
votes
3answers
119 views

How is Hashtable different to Hashmap [duplicate]

Possible Duplicate: Differences between HashMap and Hashtable? I've seen hash tables and hash maps used in different code but they look like they do the same thing. Is there a difference ...
1
vote
0answers
89 views

A simple hash function for a grid [closed]

I have a 3d grid with a known size N^3. In this grid I have a collection of M grid points (i,j,k) (I know that these points constitute a contiguous shape if that is any help). I need to map the ...
4
votes
4answers
219 views

Hashing Keys in Java

In java, when I use a String as a key for Hashmap I get a little different result than when I use the string hashcode as a key in the HashMap. Any insight?
-3
votes
2answers
923 views

Is HashTable,HashMap serializable in JAva [closed]

As in the subject is HashTable,HashMap serializable in Java?
2
votes
2answers
209 views

hash table with chaining method program not working as expected

I am implementing hash table in C using linked list chaining method. The program runs, but while searching for an entry, i always get the result "Element is not found" though the element is in hash. ...
-1
votes
3answers
403 views

Hash maps in ruby [closed]

Given: hash = { "value" => 4, "details" => "I am some details"}, {"value" => 5, "details" => "I am new details"} can I do something like: hash.each do |key, value| puts "#{key} is ...
0
votes
2answers
172 views

How do I search a hash table?

I've just started learning about hash tables and I understand how to insert but not how to search. These are the algorithms I'll be basing this question off: Hashing the key int Hash (int key) { ...
5
votes
2answers
181 views

Growing a Hashmap of vectors in Matlab

I have a need for hashmap-like functionality in Matlab, where the hashmap maps vectors to other vectors, and the number of vectors (ranging in the hundreds of thousands) is not known beforehand. I ...
-4
votes
2answers
293 views

How to Store unique objects to avoid the duplicates in java Set?

How to Store unique objects to avoid the duplicates in java Set? For example Consider Employee object which (Employee Id, name, salary....) list of employee of objects need to add in the Set. We ...
1
vote
3answers
335 views

ConcurrentHashMap and Hashtable in Java

What is the difference between a ConcurrentHashMap and a Hashtable in Java? Which is more efficient for non-threaded applications?
1
vote
6answers
182 views

Hash function for a generic object

How do you come up with a hash function for a generic object? There is the constraint that two objects need to have the same hash value if they are "equal" as defined by the user. How does Java ...
2
votes
4answers
241 views

Count number of invocations of HashMap/HashTable

I have a java progam in which there are a lot of HashMap/HashTable being used for mapping key-value pairs. Now I want to profile or rather count how many times the get() and put() methods have been ...
1
vote
3answers
227 views

Why would a higher load factor in HashMap increase lookup cost?

From JavaDoc of HashMap : As a general rule, the default load factor (.75) offers a good tradeoff between time and space costs. Higher values decrease the space overhead but increase the ...
5
votes
4answers
178 views

What the iteration cost on a HashSet also depend on the capacity of backing map?

From the JavaDocs of HashSet: This class offers constant time performance for the basic operations (add, remove, contains and size), assuming the hash function disperses the elements properly ...
0
votes
2answers
82 views

Do all the dictionary-like data structures need to rehash whenever its size reaches the threshold ?

I am wondering for those dictionary-like data structure (Hashtable, HashMap, LinkedHashMap, TreeMap, ConncurrentHashMap, SortedMap and so on) need to do rehashing operation when its size reaches the ...
5
votes
2answers
2k views

Why Hashtable does not allows null keys or values?

As specified in JDK documentation, Hashtable does not allow null keys or values. HashMap allows one null key and any number of null values. Why is this ?
0
votes
3answers
101 views

What datastructure is effective for minimizing the cost of look ups in hash table buckets?

Given a hash table with collisions, the generic hash table implementation will cause look ups within a bucket to run in O(n), assuming that a linkedlist is used. If we switch the linked list for a ...

1 2 3 4