Tagged Questions
The hash-code-uniqueness tag has no wiki summary.
31
votes
2answers
3k views
Why is '397' used for ReSharper GetHashCode override?
Like many of you, I use ReSharper to speed up the development process. When you use it to override the equality members of a class, the code-gen it produces for GetHashCode() looks like:
public ...
8
votes
6answers
1k views
Tinyurl-style unique code: potential algorithm to prevent collisions
I have a system that requires a unique 6-digit code to represent an object, and I'm trying to think of a good algorithm for generating them. Here are the pre-reqs:
I'm using a base-20 system (no ...
5
votes
3answers
99 views
Will this hash function collide unusually frequently?
I had the following code to generate a hash of an object:
public int GetHashCode(MyType obj)
{
return (obj.Prop1.GetHashCode() + obj.Prop2.GetHashCode() + obj.Prop3.GetHashCode()).GetHashCode();
}
...
5
votes
3answers
524 views
guava-libraries: Is Objects.hashCode(Object[]) collision safe?
In looking at different options for overriding hashCode(), I was directed to Objects.hashCode(Object[]) in Google's guava-libraries (javadoc). The javadoc states that it delegates to ...
4
votes
5answers
532 views
Are there circumstances where a hash algorithm can be guaranteed unique?
If I'm hashing size-constrained similar data (social security numbers, for example) using a hash algorithm with a larger byte size than the data (sha-256, for example), will the hash guarantee the ...
4
votes
1answer
422 views
Fast HashCode of a Complex Object Graph
I have a pretty complex object and I need to get uniqueness of these objects. One solution can be done by overriding GetHashCode(). I have implemented a code noted below:
public override int ...
3
votes
5answers
133 views
Is it a good approach to generate hash codes?
I have to write a hash function, under the following two conditions:
I don't know anything about Object o that is passed to the method - it can be a String, and Integer, or an actual custom object;
...
2
votes
4answers
200 views
Is a hash result ever the same as the source value?
This is more of a cryptography theory question, but is it possible that the result of a hash algorithm will ever be the same value as the source? For example, say I have a string:
...
2
votes
2answers
1k views
Dynamic perfect hashing and universal hash functions - explanation please?
So I'm reading up about hash tables, hash functions etc. I was intrigued to read on wikipedia about how "dynamic perfect hashing" involves using a second hash table as the data structure to store ...
1
vote
2answers
47 views
setting hashcode and equals to create a set with unique object
I would create a Set exactly HashSet to contains only char.for example a,b,c,d,e,f,g...
but these chars are not represented by the primitive type but I have an object
public FirstChar{
private ...
1
vote
4answers
240 views
How to generate a hash code from three longs
I have a HashMap with coordinates as keys.
Coordinates have 3 longs holding the x, y and z coordinate. (Coordinate is and needs to be a custom class, the coordinates need to be longs).
Now i want to ...
1
vote
14answers
2k views
Why are the hash codes generated by this function not unique?
I'm testing the VB function below that I got from a Google search. I plan to use it to generate hash codes for quick string comparison. However, there are occasions in which two different strings ...
0
votes
0answers
437 views
How to implement IEqualityComparer's GetHashcode based on two object fields [closed]
Possible Duplicate:
What is the best algorithm for an overridden System.Object.GetHashCode?
I am an list of MyObject's and I want to come up with the unique set of objects. MyObject has ...
0
votes
4answers
395 views
Are hash collisions with different file sizes just as likely as same file size?
I'm hashing a large number of files, and to avoid hash collisions, I'm also storing a file's original size - that way, even if there's a hash collision, it's extremely unlikely that the file sizes ...
0
votes
1answer
39 views
Reliably associate local metadata to a remote file?
WinForms / C#
My application allows the user to specify 1) additional information for 2) a given file, both of which are uploaded to the server. There are two isolated uploads: first the file, and ...