Top "Partition-problem" questions

In computer science, the partition problem is to decide whether a given multiset of integers can be partitioned into two "halves" that have the same sum.

1D Number Array Clustering

So let's say I have an array like this: [1,1,2,3,10,11,13,67,71] Is there a convenient way to partition the array into something …

arrays cluster-analysis data-mining dimension partition-problem
3-PARTITION problem

here is another dynamic programming question (Vazirani ch6) Consider the following 3-PARTITION problem. Given integers a1...an, we want to …

algorithm dynamic-programming partition-problem
Getting all possible sums that add up to a given number

I'm making an math app for the android. In one of these fields the user can enter an int (no …

java algorithm math partition-problem
Print all unique integer partitions given an integer as input

I was solving a programming exercise and came across a problem over which I am not able to satisfactorily find …

algorithm recursion numbers decomposition partition-problem