Users Online
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Latest Articles
Articles Hierarchy
C++ Program to Generate All the Set Partitions of n Numbers Beginning from 1 and so on
C++ Program to Generate All the Set Partitions of n Numbers Beginning from 1 and so on
This is a C++ program to generate all the set partitions of n numbers beginning from 1 and so on.
1. This algorithm generates all the possible partition can be generated by breaking the given integer value.
2. The time complexity of this algorithm is O(n*n!).
1. This algorithm takes the input of a natural number and prints all the possible partition of each number less than or equal to it.
2. For each number, it starts with the number and breaks it by 1, at a time.
3. Exit.
C++ Program to generate all the set partitions of n numbers beginning from 1 and so on.
This program is successfully run on Dev-C++ using TDM-GCC 4.9.2 MinGW compiler on a Windows system.
#include<iostream> using namespace std; // A function to print the generated partition. void printArray(int p[], int n) { cout<<"\t"; for (int i = 0; i < n; i++) cout<<p[i]<<" "; cout<<"\n"; } // A function to print all the possible partition. void PrintAllUniqueParts(int n) { int p[n], k = 0; p[k] = n; // Loop until all the array elements converted to 1 mean no further partition can be generated. while(1) { printArray(p, k + 1); int rem_val = 0; // Move the pointer to the index so that p[k] > 1. while (k >= 0 && p[k] == 1) { rem_val += p[k]; k--; } // If k < 0 then the all the element are broken down to 1. if (k < 0) return; // If value greater than 1 is found then decrease it by 1 and increase rem_val to add it to other elements. p[k]--; rem_val++; // Loop until the number of 1's are greater than the value at k index. while (rem_val > p[k]) { p[k+1] = p[k]; // Decrease the rem_val value. rem_val = rem_val - p[k]; k++; } // Assign the remaining value to the index next to k. p[k+1] = rem_val; k++; } } int main() { int n; cout<<"Enter natural numbers for creating partitions: "; cin>>n; if (value <= 0) { cout<<"Wrong input!!"; break; } cout<<"All Unique Partitions of "<<n<<" are:-\n"; PrintAllUniqueParts(n); return 0; }
1. Take the input of the natural number ‘n’.
2. For a loop on ‘i’ from 1 to n, create a partition of each number.
3. Call PrintAllUniqueParts() with ‘i’ in the argument list.
4. Inside PrintAllUniqueParts(), declare an array p[] of length ‘n’ since we can generate maximum n partition, an element k to traverse in the array p[] and rem_val.
5. Assign n to the first element of array p[] and k to 0.
6. Now inside an infinite loop, print the array p[] and assign rem_val to 0, initially.
7. At the end of each iteration k Shifts to the end of the array to move it back to the first value encountered as greater than 0 and meanwhile add up all 1’s to rem_val.
8. If k reaches to -1 then breaks the loop and return to main.
9. To break value at k, decrement it and add it to rem_val.
10. So in the next loop, break rem_val till it is more than the value at index k, it will ignore the repetition.
11. Return to main.
12. Exit.