combination_lock, a MATLAB code which simulates the process of determining the combination of a lock.
This program demonstrates the method of exhaustive search, that is, it searches for an answer by trying every possibility. This requires a way of logically ordering the possibilities.
combination_lock ( m, n, c )where
The information on this web page is distributed under the MIT license.
combination_lock is available in a C version and a C++ version and a Fortran90 version and a MATLAB version and a Python version.
bicycle_lock, a MATLAB code which simulates the process of determining the secret combination of a bicycle lock, an integer between 000 and 999.
combo, a MATLAB code which includes many combinatorial routines.
partition_problem, a MATLAB code which seeks solutions of the partition problem, splitting a set of integers into two subsets with equal sum.
satisfy_brute, a MATLAB code which uses brute force to find all assignments of values to a set of logical variables which make a complicated logical statement true.
subset, a MATLAB code which enumerates combinations, partitions, subsets, index sets, and other combinatorial objects.
subset_sum, a MATLAB code which seeks solutions of the subset sum problem.
tsp_brute, a MATLAB code which reads a file of city-to-city distances and solves the traveling salesperson problem, using brute force.