
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
C++ Program to Generate All Possible Subsets with Exactly k Elements in Each Subset
This is a C++ program to generate all possible subsets with exactly k elements in each subset.
Algorithms
Begin function PossibleSubSet(char a[], int reqLen, int s, int currLen, bool check[], int l): If currLen > reqLen Return Else if currLen = reqLen Then print the new generated sequence. If s = l Then return no further element is left. For every index there are two options: either proceed with a start as ‘true’ and recursively call PossibleSubSet() with incremented value of ‘currLen’ and ‘s’. Or proceed with a start as ‘false’ and recursively call PossibleSubSet() with only incremented value of ‘s’. End
Example
#include<iostream> using namespace std; void PossibleSubSet(char a[], int reqLen, int s, int currLen, bool check[], int l) //print the all possible combination of given array set { if(currLen > reqLen) return; else if (currLen == reqLen) { cout<<"\t"; for (int i = 0; i < l; i++) { if (check[i] == true) { cout<<a[i]<<" "; } } cout<<"\n"; return; } if (s == l) { return; } check[s] = true; PossibleSubSet(a, reqLen, s + 1, currLen + 1, check, l); //recursively call PossibleSubSet() with incremented value of ‘currLen’ and ‘s’. check[s] = false; PossibleSubSet(a, reqLen, s + 1, currLen, check, l); //recursively call PossibleSubSet() with only incremented value of ‘s’. } int main() { int i,n,m; bool check[n]; cout<<"Enter the number of elements: "; cin>>n; char a[n]; cout<<"\n"; for(i = 0; i < n; i++) { cout<<"Enter "<<i+1<<" element: "; cin>>a[i]; check[i] = false; } cout<<"\nEnter the length of the subsets required: "; cin>>m; cout<<"\nThe possible combination of length "<<m<<" for the given array set:\n"; PossibleSubSet(a, m, 0, 0, check, n); return 0; }
Output
Enter the number of elements: 7 Enter 1 element: 7 Enter 2 element: 6 Enter 3 element: 5 Enter 4 element: 4 Enter 5 element: 3 Enter 6 element: 2 Enter 7 element: 1 Enter the length of the subsets required: 6 The possible combination of length 6 for the given array set: 7 6 5 4 3 2 7 6 5 4 3 1 7 6 5 4 2 1 7 6 5 3 2 1 7 6 4 3 2 1 7 5 4 3 2 1 6 5 4 3 2 1
- Related Articles
- Count all possible walks from a source to a destination with exactly k edges in C++
- C++ Program to Generate All Pairs of Subsets Whose Union Make the Set
- Maximum possible middle element of the array after deleting exactly k elements in C++
- C++ Program to Generate All Subsets of a Given Set in the Lexico Graphic Order
- Sum of XOR of all possible subsets in C++
- Program to count number of sublists with exactly k unique elements in Python
- Sum of the products of all possible Subsets in C++
- C++ Program to Generate All Possible Combinations Out of a,b,c,d,e
- C++ Program to Generate All Possible Combinations of a Given List of Numbers
- Finding all possible subsets of an array in JavaScript
- C++ Program to Generate a Random Subset by Coin Flipping
- Possible walks from a source to a destination with exactly k edges\n
- Program to generate all possible strings by taking the choices in python
- Maximum subset with bitwise OR equal to k in C++
- Partition to K Equal Sum Subsets in C++

Advertisements