SUBSET_SUM is a C++ library which seeks solutions of the subset sum problem.
This function tries to compute a target value as the sum of a selected subset of a given set of weights.
This function works by brute force, that is, it tries every possible subset to see if it sums to the desired value.
Given N weights, every possible selection can be described by one of the N-digit binary numbers from 0 to 2^N-1.
This function includes a range, which allows the user to control which subsets are to be checked. Thus, if there are N weights, specifying a range of [ 0, 2^N-1] indicates that all subsets should be checked. On the other hand, this full range could be broken down into smaller subranges, each of which could be checked independently.
It is possible that, in the given range, there may be multiple solutions of the problem. This function will only return one such solution, if found. However, the function may be called again, with an appropriate restriction of the range, to continue the search for other solutions.
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
SUBSET_SUM is available in a C version and a C++ version and a FORTRAN90 version and a FORTRAN77 version and a MATLAB version.
CHANGE_MAKING, a C++ library which considers the change making problem, in which a given sum is to be formed using coins of various denominations.
COMBO, a C++ library which includes many combinatorial routines.
KNAPSACK_01, a C++ library which uses brute force to solve small versions of the 0/1 knapsack problem;
PARTITION_PROBLEM, a C++ library which seeks solutions of the partition problem, splitting a set of integers into two subsets with equal sum.
SATISFY, a C++ program which demonstrates, for a particular circuit, an exhaustive search for solutions of the circuit satisfiability problem.
SUBSET_SUM, a dataset directory which contains examples of the subset sum problem, in which a set of numbers is given, and is desired to find at least one subset that sums to a given target value.
TSP_BRUTE, a C++ program which reads a file of city-to-city distances and solves the traveling salesperson problem, using brute force.
You can go up one level to the C++ source codes.