


The following editor will bring you a Java method to find all subsets of a set through bit operations. The editor thinks it is quite good, so I will share it with you now and give it as a reference for everyone. Let’s follow the editor and take a look.
Java does not have a built-in method to find all subsets of a set. We can find it through the subset rules of the set.
All subsets of a set are equal to 2^the length of the set. For example, the length of {c,b,a} is 3, and there are 8 subsets of this set.
This sentence seems very simple, but it also contains profound philosophy. In fact, all sets of a set are related to the number 2^the length of the set. For example, in the above example, if the length of {c, b, a} is 3, then 0-7 can be used to represent all its subsets. As shown below, changing the position corresponding to the number to 1 means that I need this number to form a subset. The binary representation from 0 to 7 just represents all subsets with a length of 3 and a number of 8 subsets.
0(000):{}
1(001):{a}
2(010):{b}
3(011 ): {ab}
4(100): {c}
5(101): {a,c}
6(110): {b,c }
7(111): {a,b,c}
So, according to the above rules, the code can be written like this, first take the length of the set, and find out 2^The length of the set is How many, such as 8 above, and then traverse from 0 to 8-1. When traversing, perform bit operations on each data 0, 1, 2... and determine the corresponding number of digits one by one, that is, in binary representation, which digit is 1. Use assembly, move each bit to the end, and implement it with the bit of 1. The specific code is as follows:
import java.util.ArrayList; public class getSubSet { public static ArrayList<ArrayList<Integer>> getSubset(ArrayList<Integer> L) { if (L.size() > 0) { ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>(); for (int i = 0; i < Math.pow(2, L.size()); i++) {// 集合子集个数=2的该集合长度的乘方 ArrayList<Integer> subSet = new ArrayList<Integer>(); int index = i;// 索引从0一直到2的集合长度的乘方-1 for (int j = 0; j < L.size(); j++) { // 通过逐一位移,判断索引那一位是1,如果是,再添加此项 if ((index & 1) == 1) {// 位与运算,判断最后一位是否为1 subSet.add(L.get(j)); } index >>= 1;// 索引右移一位 } result.add(subSet); // 把子集存储起来 } return result; } else { return null; } } public static void main(String[] args) { ArrayList<Integer> L = new ArrayList<Integer>(); L.add(1); L.add(2); L.add(3); System.out.println(getSubset(L)); } }
Run The results are as follows:
The above is the detailed content of Detailed explanation of Java's implementation method of finding all subsets of a set through bit operations. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor
