私はこの関数をphpで記述して、数値のグレイコードを実行しました。
function c_gray($num){
$bin=decbin($num); //binary of the number
$xor=array();
$xor[]=reset(str_split($bin)); //Get the first bit of binary and put it as the first element of $xor array
for($i=0;$i<strlen($bin)-1;$i++){ //for any bit of the binary
echo $xor[]=$bin[$i] ^ $bin[$i+1]; //do the xor with the next bit of binary and put the result in array $xor
}
$res=implode($xor); //put hte final code in $res
return $res;
}
問題はxorにあります。配列を印刷する場合$xor
、最初に配置した要素だけがあります$xor[]=reset(str_split($bin));
どこを間違えますか?