首页 > 代码库 > 高效求一个整数中1的位数
高效求一个整数中1的位数
求一个整数中0或1的位数,有很多方法可以使用除法,求余等方法,也可以使用位运算,相比前者效率更高。
#include <stdio.h>#include <stdlib.h>//求一个整数 1的位数int count0(int x){ int num=0; while(x) { num+=x%2; x/=2; } return num;}int count1(int x){ int num=0; while(x) { num+=(x&0x01); x>>=1; } return num;}int count2(int x){ int num=0; while(x) { x &=(x-1); num++; } return num;}int main(){ unsigned int x=10; printf("%d %d\n",x,count0(x)); printf("%d %d\n",x,count1(x)); printf("%d %d\n",x,count2(x)); return 0;}
高效求一个整数中1的位数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。