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:
Inject Parameters into JUnit Jupiter Unit Tests
Guide To CompletableFuture
Spring Security OAuth Login with WebFlux
Java Program to Perform Optimal Paranthesization Using Dynamic Programming
CyclicBarrier in Java
Java Program to Find All Pairs Shortest Path
Java Program to Implement Ternary Search Tree
Spring Data JPA @Query
Function trong Java 8
Spring Boot - Creating Docker Image
Chương trình Java đầu tiên
Automatic Property Expansion with Spring Boot
Java Program to Implement Bucket Sort
Java Program to Implement Stack
Java Program to Implement Segment Tree
Using JWT with Spring Security OAuth (legacy stack)
An Intro to Spring Cloud Security
Java Program to Implement AVL Tree
Java – Combine Multiple Collections
Java – Random Long, Float, Integer and Double
Hướng dẫn Java Design Pattern – Decorator
Java Program to Find kth Largest Element in a Sequence
Java Program to Perform Cryptography Using Transposition Technique
Java Program to Find the Mode in a Data Set
Java Program to Implement Singly Linked List
Guide to CopyOnWriteArrayList
Java Program to Implement Graph Coloring Algorithm
Java – Write a Reader to File
Giới thiệu SOAP UI và thực hiện test Web Service
Java Program to Generate Random Hexadecimal Byte
Java Program to Implement Sorted Array
Java Program to Implement RoleList API