Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,926 questions

51,859 answers

573 users

How to find hamming distance (number of bits in the same position that differs in two numbers) in PHP

2 Answers

0 votes
function hamming_distance($num1, $num2) {
    $xr = $num1 ^ $num2;
    $result = 0;
    
    while ($xr != 0) {
        $result += $xr & 1;
        $xr = $xr >> 1;
    }
    
    return $result;
}

$num1 = 9;
$num2 = 14;

echo hamming_distance($num1, $num2);



/*
run:
 
3
 
*/

 



answered Feb 6, 2024 by avibootz
0 votes
function hamming_distance($bin1, $bin2) {
    $b1 = str_split($bin1);
    $b2 = str_split($bin2);
    $result = 0;
    
    for ($i = 0; $i < count($b1); $i++) {
        if($b1[$i] != $b2[$i]) {
            $result++;
        }
    }
    
    return $result;
}

echo hamming_distance('10101011', '01010111'); 



/*
run:
 
6
 
*/

 



answered Feb 6, 2024 by avibootz
...