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:
JWT – Token-based Authentication trong Jersey 2.x
Hướng dẫn Java Design Pattern – Iterator
How to Remove the Last Character of a String?
Dockerizing a Spring Boot Application
Java Program to Implement the Program Used in grep/egrep/fgrep
Check if a String is a Palindrome in Java
Java Program to Apply DFS to Perform the Topological Sorting of a Directed Acyclic Graph
Guide to Apache Commons CircularFifoQueue
Arrays.asList vs new ArrayList(Arrays.asList())
Spring Security Logout
Java Program to Implement Bit Array
Java – Reader to String
Java Program to Implement Strassen Algorithm
Jackson – Bidirectional Relationships
Java Program to Perform Postorder Non-Recursive Traversal of a Given Binary Tree
Spring REST API + OAuth2 + Angular
Rate Limiting in Spring Cloud Netflix Zuul
Java Copy Constructor
Java Program to Print only Odd Numbered Levels of a Tree
Java Program to Generate Random Numbers Using Multiply with Carry Method
Receive email using IMAP
Find the Registered Spring Security Filters
Mảng (Array) trong Java
Examine the internal DNS cache
Serverless Functions with Spring Cloud Function
Java Program to Implement Pollard Rho Algorithm
Guide to System.gc()
Map Interface trong java
Uploading MultipartFile with Spring RestTemplate
Number Formatting in Java
Xử lý ngoại lệ đối với trường hợp ghi đè phương thức trong java
Spring Boot - Enabling Swagger2