A hash table in programming is a collection that uses a hash function to map identifying values (keys) to their associated values.
0
votes
1answer
30 views
pure C generic bidirectional hashtable with specific requirements
I have to design and implement a data-structure, which is like bimap, bidimap or dualmap, i.e. hashtable in which values can be used to extract keys and of course in reverse direction.
Normally, it ...
0
votes
1answer
15 views
Is 'vacated' in open address hash table only capable to store one variable?
I'm studying Master Algorithms with C and in the open address hash table program, the author defined: void *vacated; to point to the vacated position in a hash table. So if I would like to delete 2 ...
0
votes
1answer
24 views
Chained hash-table declaration
In Master Algorithm with C, the author has declared the structure of a chained hash table like below:
typedef struct CHTbl_ {
int buckets;
int (*h)(const void *key);
...
0
votes
1answer
25 views
How to make my HashTable work on for a specific type
I need to create a HashTable for a project.
Here is how I define what my HashTable is:
public class StudentHashTable<Name, DateOfBirth> {
}
The way you would create my HashTable is the ...
1
vote
2answers
50 views
why is Hashtable not a part of Java Collection framework? [closed]
I usually work in non multi threaded environment so usually go for HashMap instead of Hashtable. I know the difference between both and I also know Hashtbale was introduced way before Java Collection ...
0
votes
1answer
39 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 ...
1
vote
1answer
19 views
Basic Hashtable algorithm - removing duplicates
I just had an interview this morning and I was given the question "Give an algorithm for removing duplicates from a list of integers". This is a fairly standard question so I was pretty confident I ...
0
votes
3answers
64 views
std::unordered_map containing another std::unordered_map?
We are working on a game project for school in c++.
I'm in charge of the map object, who will contain Entities like bombs, players, walls and boxes.
I have 3 containers in my map:
A std::list for ...
0
votes
0answers
17 views
powershell: Read file into hastable, and use two segments of the file for key
My first question here, so I hope I do everything right :-)
I have some existing code, that reads a file with 30.000 records into an array, and then searches through the array to find a match on two ...
-3
votes
2answers
69 views
Implementing a hash table in c# tutorial [closed]
I wish to build a hash table data structure in c#. Is there any good tutorial which I could follow? Thanks
1
vote
1answer
24 views
getting Null value from Persistent object
I am trying to store the registration state of the user in my app. i have used Persistent store. But i am not getting the data bak from the store. I have written the below code:
package ...
0
votes
1answer
24 views
wrapping a custom hash table using swig
I have a custom implementation of a hash table written in C for an application that I am developing. Now I want to create a wrapper for it in swig so that I can map them into native types like "dict" ...
0
votes
1answer
33 views
Parse Hashtable in JSON, perfect(jsonencode). But I don't know how to parse json in Hashtable(jsondecode). (Android)
I've created a JSON encode where you enter a HashTable (public Hashtable<?, ?> JSonDecode(String data) {... return objJS.toString(); } ) and get a string in JSON format. That is:
If I have a ...
1
vote
1answer
26 views
Error when calling std::find on a user-defined object
So I keep get error message called:
no match for 'operator==' in '(&__first) >std::_List_iterator<_Tp>::operator* with _Tp = Course == __val'
in the following code:
int main(){
Course ...
-1
votes
2answers
45 views
How to use an integer type as a hash key?
Is this a correct implementation of using an integer type as a hash key?
struct node_s{
int key; //key will come as a long
int counter; //# occurrence of hashed key (aka how many times has ...
1
vote
1answer
54 views
Universal Hashfunctions for string
I am trying to implement two different universal hash functions for strings.
But I have the problem that sometimes the hash value is 0.
With this I can“t use the hash function because I want to ...
0
votes
2answers
91 views
Does a perfect hash function guarantee no collisions?
I have been reading and learning hashing and hashtables and experemented with some code(I am still very new to this so I might say something wrong that I missunderstood). I came to the issue for ...
-1
votes
1answer
32 views
time complexity of closed hashing algorithm
Assume we have applied close hashing algorithm on (4, 2, 12, 3, 9, 11, 7, 8, 13, and 18). And assume the length of hash table is 7 initially.
How a search on such a hash table can be achieved in O(1) ...
0
votes
1answer
25 views
Segfault when trying to access a hash in a particular function
So, I'm trying to make a simple hash data structure for an assignment. As it is, everything works except when i try to access my remove function when i try to compare a key in my hash with a string ...
0
votes
2answers
47 views
Parallel hasing using openmp
I have a piece of code for parallel hashing, the insert code is as follows:
int main(int argc, char** argv){
.....
Entry* table;//hash table
for(size_t i=0;i<N;i++){
keys[i]=i;
...
0
votes
3answers
56 views
Hash function for hash table with strings and integers as keys
i am in search for a good Hash function which i can use in Hash table implementation. The thing is that i want to give both strings and integers as parameters(keys) in my hash function.
i have a txt ...
0
votes
1answer
28 views
Hash Table Resizing, Linear Probing and Complexity
I'm working through some old exam papers and came across the following:
Demonstrate how a closed address hashing algorithm works using the
data set {4, 2, 12, 3, 9, 11, 7, 8, 13, 18} as an input ...
1
vote
1answer
41 views
Prevent Hashtable from converting to ASCII
I am running a hashtable in an Android app that I am developing. When I run the activity it is converting the content of "ht" into ASCII characters. Does anyone know a way to prevent this from ...
0
votes
2answers
27 views
Advice on data structure for pooling objects
I'm implementing a simple pooling system in my box2d based game to spawn/despawn/pre-pool all objects. The objects in question are all circles that are created at a set radius. e.g. When I pre-pool I ...
0
votes
1answer
32 views
Java sorting with collections plus manual sorting
I am writing a console application that calculates using hashtables various prices. It writes prices with a class called Priceprint. I am using hashtables for the rest of the program because order is ...
0
votes
1answer
65 views
Delete value from hashtable in powershell
Hi, I want to delete a specific value from hashtable.
The table looks like this:
Name Value ...
-1
votes
4answers
58 views
How to dynamically initialize the size of an array of linked lists java [closed]
I have a constructor that specifies how large my array of linked lists should be but I am having troubles initializing the size of the array. This is what I'm trying but I get an error whenever I try ...
0
votes
1answer
37 views
Weird HashTable ArrayIndexOutOfBounds Exception
The test testGetBucket() is only not working when the key is greater than 5 characters. Example if any of the puppy names are longer than 5 characters, the test will return an ArrayIndexOutOfBounds ...
0
votes
1answer
19 views
inserting into an array of linked lists in java
I have an array of linked lists that I initialized by doing:
hashTable = (T[]) new Object[tableSize];
for(int i = 0; i < tableSize; i++){
hashTable[i] = (T) new LinkedList<T>();
// ...
0
votes
1answer
25 views
Setting size of generic array in java?
I have a private member which is an array of type generics and in my constructor I have a parameter that is to set the size of this array. How could I set my private array to the size specified by the ...
0
votes
0answers
107 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
2answers
34 views
create dispatch table inside class constructor in perl
I am trying to create dispatch table inside class constructor.Execution fails with below mentioned error.
Error:
Use of uninitialized value in subroutine entry at ../lib/Parser.pm .
Can't use ...
2
votes
1answer
63 views
Java Hash Table Search Function
I have a hash table created but I seem to be stuck on one problem. I have data in the hash table and when searching for the data it returns as expected. However, if I search for something that is not ...
-2
votes
0answers
19 views
How to store dataset using closed hashing
We have values
4,2,12,3,9,11,7,8,13,18
a. How to store this in a closed-addressing hashing table which has a length of 7 initially.
b. How a search on such a hash table can be achieved in O(1) ...
-3
votes
1answer
41 views
How do you make a collection from a hash table? [closed]
I am wondering just what the generic code for making a Collection out of a Hash Table would look like. For example if I already have a Hash Table created, how would I then convert that to a ...
0
votes
1answer
42 views
Hash Table Chaining
public void put(int key, int value) {
int hash = (key % TABLE_SIZE);
if (table[hash] == null)
table[hash] = new LinkedHashEntry(key, value);
else {
...
0
votes
1answer
24 views
Hashtable style collection creation using Javascript
In JavaScript I want to create a collection in following way -
Start with an empty collection with var c = [];
Then I want to add item in it; after addition it will look like
{ 'buttonSubmit': ...
6
votes
1answer
117 views
Improving performance of very large dictionary in Python
I find that if I initialize an empty dictionary at the beginning, and then adding elements to the dictionary in a for loop (about 110,000 keys, the value for each key is a list, also increasing in the ...
1
vote
1answer
36 views
How to implement a hash function for a dynamic hashtable?
I am trying to implement a generic HashTable.
(This question is in continuation to the question asked here)
I have implemented the generic hash function for the case when the size of the table is ...
0
votes
2answers
118 views
How to implement a generic hash function in C++
I am trying to implement HashTable in C++ via templates.
Here is the signature:
template<class T1, class T2>
class HashTable {
public:
void add(T1 a, T2 b);
void hashFunction(T1 key, T2 ...
0
votes
2answers
44 views
Concurrency in Hashtables, and fail-safe behavior
I was reading about Hashtables and this question struck me. Hashtables are synchronized, so is an iterator on a Hashtable fail-safe?
Also, for fail-safe Collections, when multiple threads try to ...
0
votes
1answer
30 views
Printing contents of a hashtable
I'm having some trouble printing the contents of a hashtable, it seems to just be printing the reference out.
add to hashtable code:
protected Hashtable items = new Hashtable();
public void ...
0
votes
4answers
217 views
Java Collections
I need to create a Hallway class which will have inside 2 ArrayLists of Stand objects , one for the stands on the right, and the other for the ones on the left.
My intention is to put these ...
-2
votes
0answers
8 views
Given a set of 2 email lists that get updated every month write some code to define which emails are new, which are old, and which are deleted
I am new to Java and have a basic understanding of the fundamentals, I would appreciate if someone could tell me where to start, I need a jumping off point. I think I will need to use a String Array, ...
0
votes
3answers
82 views
Does C have hash/dictionary data structure?
I'm learning C now coming from knowing perl and a bit python. I did a quick search and found there is no explicit hash/dictionary as in perl/python and I saw people were saying you need a function to ...
0
votes
1answer
53 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 ...
1
vote
2answers
60 views
ruby hash-table insert new element with existing key
Say I have a array of words, different words might have different lengths, and I want to organise them by length. So later I can access all words share with same length by giving a parameter of ...
1
vote
1answer
61 views
Passing Dynamic data to the HashTable in a servlet
I have created a JSP page having radio buttons same as the number of days in the current month. The code is:
<%@page import="java.util.Calendar"%>
<%@ page language="java" ...
1
vote
2answers
68 views
vector of list. Should I use pointers or values?
I am implementing the data struct hash table where collisions are resolved using chains.
So as underlying data structure I need vector of lists.
I choice from 2 variants:
...
0
votes
2answers
108 views
Array of Lists of KeyValuePairs, Managing Template Hashtable with Chaining
So I'm currently working on a project that's intended to help teach me more about hash tables
However, I'm having major difficulty implementing the HashTable's data member which is supposed to be an ...


