-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm trying to optimize a piece of software which is basically running millions of tests. These tests are generated in such a way that there can be some repetitions. Of course, I don't want to spend time running tests which I already ran if I can avoid it efficiently.
So, I'm thinking about using…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is there an already cooked php solution?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all:
I need 3 hash functions to hash strings of a sliding window moving over a text, to be used later to search within a bloom vector. I'm using C# in my programming
I read something about rolling hash functions and cyclic polynomials, they are used for sliding window applications. But really…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My program is an implementation of a bloom filter. However, when I'm storing my hash function results in the bit array, the function (of the form f(i) = (a*i + b) % m where a,b,i,m are all positive integers) is giving me a negative result. The problem seems to be in the calculation of a*i which is…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
A bloom filter uses a hash function (or many) to generate a value between 0 and m given an input string X. My question is how to you use a hash function to generate a value in this way, for example an MD5 hash is typically represented by a 32 length hex string, how would I use an MD5 hashing…
>>> More