程序员面试题精选100题(05)-数组中只出现一次的数字[算法] (3)

时间:2019-09-22 编辑:多美文
            ++ indexBit;

      }

 

      return indexBit;

}

 

///////////////////////////////////////////////////////////////////////

// Is the indexBit bit of num 1?

///////////////////////////////////////////////////////////////////////

bool IsBit1(int numunsigned int indexBit)

{

      num = num >> indexBit;

 

      return (num & 1);
}

 

本文已影响
相关文章