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

高效统计整数中 1 的比特数

时间:2014-09-12 12:03:53      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:c语言   比特   

输入一个无符号整数,统计该整数中含1的比特数。

#include<stdio.h>
int numbits(unsigned int n)
{
	int count = 0;
	while(n>0){
		n &= (n-1);//每次操作去掉n中最低位的1
		count++;
	}
	return count;
}
int main()
{
	unsigned int n;
	scanf("%d",&n);
	printf("%d\n",numbits(n));
	return 0;
}

高效统计整数中 1 的比特数

标签:c语言   比特   

原文地址:http://blog.csdn.net/crazy_xiaohe/article/details/39226483

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