This is a mathematical distance function that can be computed with a binary calculation. If this is not about implementation, the posts may belong on http://math.stackexchange.com/
0
votes
1answer
55 views
Hamming weight for vector<int> C++
I'm working on a the Hamming weight for a vector and what I do is count in linear way all the 1 in the vector, is there any more efficient way?
int HammingWeight(vector<int> a){
int HG=0;
...
4
votes
1answer
152 views
Eliminating sequences in a message
I have an odd communications channel, and I need to detect errors as well as eliminate certain sequences in the channel.
Each message is 12 bits long, split into 3 nibbles (of 4 bits each). I need to ...
1
vote
3answers
61 views
Similarity distance measures
Vectors like this
v1 = {0 0 0 1 1 0 0 1 0 1 1}
v2 = {0 1 1 1 1 1 0 1 0 1 0}
v3 = {0 0 0 0 0 0 0 0 0 0 1}
Need to calculate similarity between them. Hamming distance between v1 and v2 is 4 and ...
0
votes
0answers
206 views
8-Puzzle Solver unexpected behavior
I am working on a 8-Puzzle Solver -using best-first search+ Hamming distance(tiles out of place) heuristic- which was required from us as a project.
I first defined a Stat Struct in a separated cpp ...
0
votes
0answers
40 views
Vector similarity
I have vectors of same length consisting of 1 and 0. I am trying to find out how similar they are. So far I am using hamming distance that I calculate sum of one vector then sum of second vector and ...
2
votes
1answer
314 views
Hamming Distance optimization for MySQL or PostgreSQL?
I trying to improve search similar images pHashed in MySQL database.
Right now I comparing pHash counting hamming distance like this:
SELECT * FROM images WHERE BIT_COUNT(hash ^ 2028359052535108275) ...
2
votes
1answer
180 views
Create hamming distance function in mysql without super privilege
I would like to use the hamming distance in my MySQL database (used over phpMyAdmin) but did not succeed in creating the function with the code given here.
I'm refering to this code:
CREATE FUNCTION ...
0
votes
0answers
209 views
SimHash PHP implementation gives strange results
I would like to implement SimHash for my project. We got around 2.000.000 text files (different language, different encoding), so I search on internet for PHP implementation and also theory.
I found ...
0
votes
1answer
373 views
How to calculate Hamming distance for a Number slider puzzle
How to calculate the Hamming distance for the following puzzle:
As far as I understand I need to compare the following two sequences:
13-11-15-00-10-08-09-12-01-06-03-02-04-07-14-05
...
1
vote
2answers
711 views
Finding hamming distance of code
A question asks: find the hamming distance of the following code:
11111
10101
01010
11100
00011
11001
The answer is 2. How does this work? I thought hamming distance is only between two ...
1
vote
3answers
819 views
Fast Popcount instruction or Hamming distance for binary array?
I'm implementing on Visual Studio 2010 C++
I have two binary arrays. For example,
array1[100] = {1,0,1,0,0,1,1, .... }
array2[100] = {0,0,1,1,1,0,1, .... }
To calculate the Hamming distance ...
-1
votes
1answer
393 views
Error detecting code and Hamming distance
The Hamming distance of v and w equals 2, but without parity
bit it would be just 1. Why is this the case?
0
votes
1answer
759 views
8-puzzle: hamming and manahttan heuristic consider “blank space”?
I've a very simple question.
I'm working on 8-puzzle (8 numbers(from 1 to 8) + blank(=0) )
When calculating hamming distance (numbers in wrong position) and manhattan distance (distance ...
1
vote
1answer
334 views
Bit string nearest neighbour searching
I have hundreds of thousands of sparse bit strings of length 32 bits.
I'd like to do a nearest neighbour search on them and look-up performance is critical. I've been reading up on various ...
0
votes
3answers
1k views
Compare two binary numbers and get the diffrent bits [duplicate]
Possible Duplicate:
Best algorithm to count the number of set bits in a 32-bit integer?
I want to write a program to get the number of 1's bit in comparing two numbers.if I compare the bits ...
2
votes
2answers
562 views
Hamming Distance / Similarity searches in a database
I have a process, similar to tineye that generates perceptual hashes, these are 32bit ints.
I intend to store these in a sql database (maybe a nosql db) in the future
However, I'm stumped at how I ...
0
votes
1answer
384 views
Hamming distance
My work is in genetics and I'm using the Hamming distance (in Matlab) to calculate the genetic distance between genotypes of a virus.
For example: Type 1 has structure 01234 and Type 2 has structure ...
2
votes
2answers
82 views
Converting N strings to a common target string in maximum of K edits
I've a set of string [S1 S2 S3 ... Sn] and I'm to count all such target strings T such that each one of S1 S2... Sn can be converted into T within a total of K edits. All the strings are of fixed ...
5
votes
4answers
1k views
How to find the closest pairs (Hamming Distance) of a string of binary bins in Ruby without O^2 issues?
I've got a MongoDB with about 1 million documents in it. These documents all have a string that represents a 256 bit bin of 1s and 0s, like:
0110101010101010110101010101
Ideally, I'd like to query ...
4
votes
2answers
543 views
Sorting strings so that hamming distance is low between adjacent strings
Problem:
I have N (~100k-1m) strings each D (e.g. 2000) characters long and with a low alphabet (eg 3 possible characters). I would like to sort these strings such that there are as few possible ...
1
vote
1answer
160 views
How do I add another column to a PostgreSQL subquery?
I wasn't too sure how to phrase this question, so here are the details. I'm using a trick to compute the hamming distance between two bitstrings. Here's the query:
select ...
0
votes
1answer
534 views
Performing bitwise operations on large bit strings in MySQL?
I've got a MySQL database with a large amount of 2048-bit binary strings (e.g '0111001...0101'). One calculation I'll need is the Hamming Distance (the total count of 1's in the XOR'd result) of these ...
0
votes
1answer
404 views
Hierarchical clustering for bitsequences
This is a homework problem and I'm facing some difficulties to understand it. The home work question is
Cluster the following bitsequences using hierarchical clustering. If d(:,:) defines the
...
3
votes
1answer
971 views
Fast computation of pairs with least hamming distance
Problem
Suppose you have N (~100k-1m) integers/bitstrings each K (e.g. 256) bits long. The algorithm should return the k pairs with the lowest pairwise Hamming distance.
Example
N = 4
K = 8
i1 = ...
3
votes
2answers
649 views
Storing and indexing binary strings in a database
A binary string as defined here is fixed size "array" of bits. I call them strings since there is no order on them (sorting/indexing them as numbers has no meaning), each bit is independent of the ...
3
votes
3answers
1k views
Most efficient way to calculate hamming distance in ruby?
In ruby, what is the most efficient way to calculate the bit difference between two unsigned integers (e.g. the hamming distance)?
Eg, I have integer a = 2323409845 and b = 1782647144.
Their binary ...
16
votes
3answers
4k views
Efficiently find binary strings with low Hamming distance in large set
Problem:
Given a large (~100 million) list of unsigned 32-bit integers, an unsigned 32-bit integer input value, and a maximum Hamming Distance, return all list members that are within the specified ...
0
votes
3answers
264 views
computing permutation of specific bits in a number
As part of my master thesis, I get a number (e.g. 5 bits) with 2 significant bits (2nd and 4th). This means for example x1x0x, where $x \in {0,1}$ (x could be 0 or 1) and 1,0 are bits with fixed ...
0
votes
5answers
614 views
finding closest hamming distance
I have N < 2^n randomly generated n-bit numbers stored in a file the lookup for which is expensive. Given a number Y, I have to search for a number in the file that is at most k hamming dist. from ...
17
votes
2answers
2k views
Hamming distance on binary strings in SQL
I have a table in my DB where I store SHA256 hashes in a BINARY(32) column. I'm looking for a way to compute the Hamming distance of the entries in the column to a supplied value, i.e. something like:
...
12
votes
1answer
2k views
Hamming Distance vs. Levenshtein Distance
For the problem I'm working on, finding distances between two sequences to determine their similarity, sequence order is very important. However, the sequences that I have are not all the same length, ...
0
votes
1answer
653 views
Efficient way of finding the dictionary based hamming distance between two words of same length
An efficient way of finding the shortest dictionary based hamming distance between two words of same length??
1
vote
2answers
4k views
Calculate Hamming distance between two strings of binary digits in Matlab
I have two equal length strings containing 1's and 0's. Each string is 128-bits long, and I want to calculate the Hamming distance between them. What's the best way I can go about doing this?
e.g. ...
3
votes
1answer
4k views
What is the hamming distance, and how do I determine it for a CRC scheme?
While studying for a class in computer networks, the prof talked about the hamming distance between 2 valid code words in a sample code. I have read about hamming distance, and it makes sense from the ...
2
votes
1answer
236 views
Algorithm for generating a size k error-correcting code on n bits
I want to generate a code on n bits for k different inputs that I want to classify. The main requirement of this code is the error-correcting criteria: that the minimum pairwise distance between any ...
0
votes
1answer
772 views
Hamming distance and error detection/correction properties
Let's assume I want to have a possibility of detecting 4-bit errors
and recovering 2-bit errors. What the Hamming distance should be then?
I wonder if it should be d = Max{2r+1, r+1} or d = s + r, ...
0
votes
3answers
771 views
Take care about precedence of * and ++ in C/C++, (and any keystroke when programming) [closed]
Somebody write this function
void strToUpper(char *p) {
while (*p) {
*p = TOUPPER(*p);
*p++; //<-- Line to pay attention
}
}
I asked, why do you put the * before p++?
...
8
votes
4answers
3k views
Fast Hamming distance scoring
There is a database with N fixed length strings.
There is a query string of the same length.
The problem is to fetch first k strings from the database that have the smallest Hamming distance to q.
N ...
4
votes
1answer
414 views
How do I find the k-nearest values in n-dimensional space?
I read about kd-trees but they are inefficient when the dimensionality of the space is high. I have a database of value and I want to find the values that are within a certain hamming distance of the ...


