首页 > 其他 > 详细

按位与,求函数返回

时间:2014-08-31 15:38:21      阅读:100      评论:0      收藏:0      [点我收藏+]
int func(x)
{
  int countx = 0;
  while(x)
  {
         countx ++;
         x = x&(x-1);
   }
   return countx;
}

假定x = 9999。 答案:8
思路:将x转化为2进制,看含有的1的个数。

按位与,求函数返回

原文:http://www.cnblogs.com/bitter-first-sweet-last/p/3947689.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!