位运算之a^b
Posted clarencezzh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了位运算之a^b相关的知识,希望对你有一定的参考价值。
题目链接:https://www.acwing.com/problem/content/91/
参考链接:https://blog.csdn.net/chaiwenjun000/article/details/71154235
https://blog.csdn.net/qq_30076791/article/details/50571194
https://blog.csdn.net/riba2534/article/details/79834558
- 二进制中子集的个数以及每个子集的具体内容
比如有5个小球,如果每个小球都被选中的话,这可以用二进制11111来表示。依此类推如果都没有被选中,则是00000。那么求出这5个小球被选中的所有可能状态,用二进制表示。
public class Main { public static void main(String[] args) { int x= (int) (Math.pow(2,5)-1);//表示5个小球都被选中的状态11111:十进制表示为2^5-1 int n=0; for(int i=x;i!=0;){ i=(i-1)&x; n++; System.out.println(Integer.toBinaryString(i));//每个子集的具体内容 } System.out.println("n=="+n);//子集个数 } }
以上是关于位运算之a^b的主要内容,如果未能解决你的问题,请参考以下文章