我在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[]=reset(str_split($bin));
我哪里错了?