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

位运算的“奇巧淫技”

时间:2019-08-13 13:28:41      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:and   its   clu   names   nbsp   code   个数   统计   font   

技术图片

 

 

技术图片

 

 

技术图片

 

 

 

 技术图片

 

 

#include<bits/stdc++.h>
using namespace std;

int getbits(int n)//统计(n)bin中的1的个数 
{
	int res=0;
	while(n)
	{
		res++;
		n=n&(n-1);
	}
	return res;
}

int cmp(int a,int b)//统计a,b中the number of different bits in the binary format of a and b. 
{
	return  getbits(a^b);	
} 

int main()
{
	int a,b;
	while(cin>>a>>b) cout<<cmp(a,b)<<endl;
	return 0;
}

  

 

位运算的“奇巧淫技”

标签:and   its   clu   names   nbsp   code   个数   统计   font   

原文地址:https://www.cnblogs.com/dragondragon/p/11340440.html

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