This is a java program to perform partition of an integer in all possible ways. Every partition when added should result in the given integer.
Here is the source code of the Java Program to Perform Partition of an Integer in All Possible Ways. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
//This is sample program to print a unique partitions of a given number
import java.util.Scanner;
public class Unique_Partitions_Number
{
public static void print(int[]p, int n)
{
for(int i=0; i<n; i++)
System.out.print(p[i]+" ");
System.out.println();
}
public static void generateUniquePartition(int n)
{
int []p = new int[n+n];
int k = 0;
p[k] = n;
while(true)
{
print(p, k=1);
int rem_value = 0;
while(k >= 0 && p[k] == 1)
{
rem_value += p[k];
k--;
}
if(k < 0)
return;
p[k]--;
rem_value++;
while(rem_value > p[k])
{
p[k+1] = p[k];
rem_value -= p[k];
k++;
}
p[k+1] = rem_value;
k++;
}
}
public static void main(String args[])
{
System.out.println("Unique Partitioning of a given number");
System.out.println("Enter the number:");
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
generateUniquePartition(n);
sc.close();
}
}
Output:
$ javac Unique_Partitions_Number.java $ java Unique_Partitions_Number Unique Partitioning of a given number Enter the number: 4 4 3 1 2 2 2 1 1 1 1 1 1
Related posts:
Java Program to Check if any Graph is Possible to be Constructed for a Given Degree Sequence
Java Program to Represent Graph Using Adjacency Matrix
Java Program to Search Number Using Divide and Conquer with the Aid of Fibonacci Numbers
A Guide to JUnit 5 Extensions
Java Program to Check Whether a Directed Graph Contains a Eulerian Cycle
Introduction to the Java NIO2 File API
Giới thiệu Google Guice – Binding
Java Program to Implement Stein GCD Algorithm
Spring Security Remember Me
Spring Cloud – Tracing Services with Zipkin
How to Count Duplicate Elements in Arraylist
Java Program to Sort an Array of 10 Elements Using Heap Sort Algorithm
Mảng (Array) trong Java
Java Program to Implement Ternary Heap
Handling URL Encoded Form Data in Spring REST
Binary Numbers in Java
Sử dụng Fork/Join Framework với ForkJoinPool trong Java
Java Program to Implement JobStateReasons API
Configure a Spring Boot Web Application
A Guide to Java SynchronousQueue
Java Program to Implement Hash Tables Chaining with Doubly Linked Lists
Inheritance and Composition (Is-a vs Has-a relationship) in Java
Spring Boot - Runners
Simplify the DAO with Spring and Java Generics
Extract links from an HTML page
Java Program to Implement Stack using Linked List
Different Ways to Capture Java Heap Dumps
Java Program to Compute DFT Coefficients Directly
Overview of the java.util.concurrent
Java Program to Implement Range Tree
Implementing a Binary Tree in Java
Using JWT with Spring Security OAuth