Add GenerateSubsets algorithm (#5867)

This commit is contained in:
Hardik Pawar
2024-10-26 20:53:50 +05:30
committed by GitHub
parent 687d2518cc
commit 709d9771e2
3 changed files with 98 additions and 0 deletions

View File

@ -0,0 +1,44 @@
package com.thealgorithms.bitmanipulation;
import java.util.ArrayList;
import java.util.List;
/**
* This class provides a method to generate all subsets (power set)
* of a given set using bit manipulation.
*
* @author Hardvan
*/
public final class GenerateSubsets {
private GenerateSubsets() {
}
/**
* Generates all subsets of a given set using bit manipulation.
* Steps:
* 1. Iterate over all numbers from 0 to 2^n - 1.
* 2. For each number, iterate over all bits from 0 to n - 1.
* 3. If the i-th bit of the number is set, add the i-th element of the set to the current subset.
* 4. Add the current subset to the list of subsets.
* 5. Return the list of subsets.
*
* @param set the input set of integers
* @return a list of all subsets represented as lists of integers
*/
public static List<List<Integer>> generateSubsets(int[] set) {
int n = set.length;
List<List<Integer>> subsets = new ArrayList<>();
for (int mask = 0; mask < (1 << n); mask++) {
List<Integer> subset = new ArrayList<>();
for (int i = 0; i < n; i++) {
if ((mask & (1 << i)) != 0) {
subset.add(set[i]);
}
}
subsets.add(subset);
}
return subsets;
}
}