Java Program to Generate All Possible Subsets with Exactly k Elements in Each Subset

This is a java program to generate and print all subsets containing exactly k element, where k is provided by user and is <= number of elements in the set. We first find the median of the sequence and then compare with each element such that the difference between the median and number is minimum, and print such k elements. We can achieve this by using Binary Counting method, where we generate first 2^k-1 numbers. The binary number itself represents a subset with 0 as absent element and 1 as present elements. Here is the source code of the Java Program to Generate All Possible Subsets with Exactly k Elements in Each Subset. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.

//This is a java program to generate all subsets containing exactly K elements in it
import java.util.Random;
import java.util.Scanner;
 
public class K_Elements_Subsets 
{
    public static void main(String args[]) 
    {
        Random random = new Random();
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter the number of elements in the set: ");
        int N = sc.nextInt();
        int[] sequence = new int[N];
        for (int i = 0; i < N; i++)
            sequence[i] = Math.abs(random.nextInt(100));
 
        System.out.println("The elements in the set : ");
        for (int i = 0; i < N; i++)
            System.out.print(sequence[i] + " ");
 
        System.out.println("\nEnter the number of elements in the subsets: ");
        int n = sc.nextInt();
 
        int[] binary = new int[(int) Math.pow(2, N)];
        for (int i = 0; i < Math.pow(2, N); i++) 
        {
            int b = 1;
            binary[i] = 0;
            int num = i, count = 0;
            while (num > 0) 
            {
                if (num % 2 == 1)
                    count++;
                binary[i] += (num % 2) * b;
                num /= 2;
                b = b * 10;
            }
            if (count == n) 
            {
                System.out.print("{ ");
                for (int j = 0; j < N; j++) 
                {
                    if (binary[i] % 10 == 1)
                        System.out.print(sequence[j] + " ");
                    binary[i] /= 10;
                }
                System.out.println("}");
            }
        }
        sc.close();
    }
}

Output:

$ javac K_Elements_Subsets.java
$ java K_Elements_Subsets
 
Enter the number of elements in the set: 
6
The elements in the set : 
51 36 33 97 48 22 
Enter the number of elements in the subsets: 
3
{ 51 36 33 }
{ 51 36 97 }
{ 51 33 97 }
{ 36 33 97 }
{ 51 36 48 }
{ 51 33 48 }
{ 36 33 48 }
{ 51 97 48 }
{ 36 97 48 }
{ 33 97 48 }
{ 51 36 22 }
{ 51 33 22 }
{ 36 33 22 }
{ 51 97 22 }
{ 36 97 22 }
{ 33 97 22 }
{ 51 48 22 }
{ 36 48 22 }
{ 33 48 22 }
{ 97 48 22 }
 
Enter the number of elements in the set: 
5
The elements in the set : 
98 74 66 16 76 
Enter the number of elements in the subsets: 
2
{ 98 74 }
{ 98 66 }
{ 74 66 }
{ 98 16 }
{ 74 16 }
{ 66 16 }
{ 98 76 }
{ 74 76 }
{ 66 76 }
{ 16 76 }

Related posts:

Java Program to do a Depth First Search/Traversal on a graph non-recursively
Hướng dẫn Java Design Pattern – Abstract Factory
Sử dụng CountDownLatch trong Java
Lập trình đa luồng với CompletableFuture trong Java 8
Java Program to Implement LinkedHashSet API
Spring Security – security none, filters none, access permitAll
Java Program to Perform Right Rotation on a Binary Search Tree
Multi Dimensional ArrayList in Java
ClassNotFoundException vs NoClassDefFoundError
Concurrent Test Execution in Spring 5
Connect through a Proxy
Guide to the Java TransferQueue
Hướng dẫn Java Design Pattern – Singleton
New Features in Java 11
Java 8 Predicate Chain
Từ khóa static và final trong java
Spring Boot - Web Socket
Java Program to Find Inverse of a Matrix
Java Program to Check if a Point d lies Inside or Outside a Circle Defined by Points a, b, c in a Pl...
Circular Dependencies in Spring
Java Program to Check if any Graph is Possible to be Constructed for a Given Degree Sequence
Spring Boot Actuator
Java Program to Perform Addition Operation Using Bitwise Operators
Java Program to Describe the Representation of Graph using Incidence List
Spring Security Registration – Resend Verification Email
A Guide to Queries in Spring Data MongoDB
Java Program to Solve the Fractional Knapsack Problem
Registration – Activate a New Account by Email
Shuffling Collections In Java
How to Get All Spring-Managed Beans?
Java Program to Implement Hamiltonian Cycle Algorithm
Java Program to Implement Wagner and Fisher Algorithm for online String Matching