lau_np
lau_np,
a FORTRAN90 code which
implements heuristic algorithms for certain "hard" problems,
by Hang Tong Lau.
These problems are hard in the sense that, as the problem size N
increases, the amount of work required to compute a solution grows
exponentially.
The classic example of this is the "traveling salesman problem",
which seeks the shortest roundtrip that visits each location exactly
once. The obvious method of solution, to compute the length of every
possible path, is not much worse than the best known method of
solution, in terms of the amount of computing required to find the
exact answer. However, there are heuristic methods that can find a
"reasonable" approximation to the answer for most problems, in a
much shorter amount of time.
The problems considered include:
-
the integer linear programming problem;
-
the K-center problem;
-
the K-median problem;
-
the 0-1 knapsack problem;
-
the multiple knapsack problem;
-
the graph matching problem;
-
the graph partitioning problem;
-
the minimal Steiner tree problem;
-
the traveling salesman problem;
Licensing:
The computer code and data files made available on this web page
are distributed under
the MIT license
Languages:
lau_np is available in
a FORTRAN90 version.
Related Data and Programs:
ASA058,
a FORTRAN90 library which
contains the original text of the Sparks
clustering algorithm.
ASA136,
a FORTRAN90 library which
contains the original text of the Hartigan
and Wong clustering algorithm.
CITIES,
a FORTRAN90 code which
handles various problems associated with a set of "cities" on a map.
FLOYD,
a FORTRAN90 code which
implements Floyd's algorithm for finding the shortest distance between pairs of
nodes on a directed graph.
KMEANS,
a FORTRAN90 code which
contains several implementations of
the K-Means algorithm.
lau_np_test
PARTITION_PROBLEM,
a FORTRAN90 code which
seeks solutions of the partition problem, splitting a set of integers into
two subsets with equal sum.
SPAETH,
a FORTRAN90 code which
can cluster data according to various principles.
SPAETH2,
a FORTRAN90 code which
can cluster data according to various
principles.
SUBSET_SUM,
a FORTRAN90 code which
seeks solutions of the subset sum problem.
TSP_LAU,
a FORTRAN90 code which
implements a heuristic algorithm for the solution of
the traveling salesperson problem.
Author:
Hang Tong Lau
Reference:
-
Rainer Burkard, Ulrich Derigs,
Assignment and Matching Problems: Solution methods with
FORTRAN programs,
Lecture Notes in Economics and Mathematical Systems,
Volume 184,
Springer Verlag, 1980.
-
Nicos Christofides,
Worst-case analysis of a new heuristic for the traveling salesman
problem,
Management Science Research Report Number 388,
Carnegie-Mellon University, 1976.
-
Frederick Hillier,
Efficient heuristic procedure for integer linear programming
with an interior,
Operations Research,
Volume 17, pages 600-637, 1969.
-
Dorit Hochbaum, David Shmoys,
A best possible heuristic for the K-center problem,
Mathematics of Operations Research,
Volume 10, pages 180-184, 1985.
-
Oscar Ibarra, Chul Kim,
Fast approximation algorithms for the knapsack and sum of
subset problems,
Journal of the Association for Computing Machinery,
Volume 22, pages 463-468, 1975.
-
Brian Kernighan, Shen Lin,
An efficient heuristic procedure for partitioning graphs,
Bell System Technical Journal,
Volume 49, pages 291-307, 1970.
-
Brian Kernighan, Shen Lin,
Heuristic solution of a signal design optimization problem,
Bell System Technical Journal,
Volume 52, pages 1145-1159, 1973.
-
Lawrence Kou, George Markowsky, Leonard Berman,
A fast algorithm for Steiner trees,
Research report RC 7390,
IBM Thomas J Watson Research Center,
Yorktown Heights, New York, 1978.
-
Hang Tong Lau,
Combinatorial Heuristic Algorithms in FORTRAN,
Springer Verlag, 1986,
ISBN: 3540171614,
LC: QA402.5 L37.
-
Yoshiaki Toyoda,
A simplified algorithm for obtaining approximate solutions
to zero-one programming problems,
Management Science,
Volume 21, pages 1417-1427, 1975.
Source Code:
Last revised on 25 July 2020.