当前位置: 代码迷 >> 综合 >> Amazon OA1——GrayCode
  详细解决方案

Amazon OA1——GrayCode

热度:80   发布时间:2023-12-17 03:13:17.0

据说题目已经换了,放在这里做参考好了

GrayCode这道题其实不太理解。


看了一下解法,觉得记下来好了。。。

解法如下:

	private static int graycode(byte term1, byte term2) {// TODO Auto-generated method stubbyte x = (byte)(term1^term2);int count = 0;while(x!=0){x = (byte)(x &(x-1));count++;}return count == 1?1:0;}