码迷,mamicode.com
首页 > 其他好文 > 详细

按位与,求函数返回

时间:2014-08-31 15:38:21      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:style   div   sp   amp   on   new   c   bs   return   

int func(x)
{
  int countx = 0;
  while(x)
  {
         countx ++;
         x = x&(x-1);
   }
   return countx;
}

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

按位与,求函数返回

标签:style   div   sp   amp   on   new   c   bs   return   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!