位运算的“奇巧淫技”
Posted dragondragon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了位运算的“奇巧淫技”相关的知识,希望对你有一定的参考价值。
#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;
以上是关于位运算的“奇巧淫技”的主要内容,如果未能解决你的问题,请参考以下文章