python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
When does a HashTable / Python dict stop probing?
In Java I'm building a datastructure that is supposed to resemble dictionaries in Python.
(As far as I understand this is called a "HashTable" in java context.)
I have read the following Pyt...

Markus B
Votes: 0
Answers: 1
Generation of HashCode for list of Objects for HashMap
I got that when we insert an object into a Map as Key, its hash code gets generated. But if my key is list of objects, in that case, is it the sum of all the Hash Code of objects in the list ?
User us...
Lolly
Votes: 0
Answers: 1
Hashmap (O(1)) supporting joker/match-all keys
The title is not so clear, because I cannot put my problem in a sentence (If you have a better title for this question, please suggest). I'll try to clarify my requirement with an example:
Suppose I h...

Ahmad
Votes: 0
Answers: 3
How to get a Map owned by an Object as an attribute from a List of these objects
I have an BOLReference object as follows:
private String ediTransmissionId;
private List<WorkflowExceptions> workflowExceptions;
And the inner WorkflowExceptions looks like below:
private Strin...

Mira Devi
Votes: 0
Answers: 1