Database
rectang.txt
Associated article: The Maximal Rectangle Problem
Tags: Database
Published source code accompanying the article by David Vandevoorde in which he presents an algorithm that illustrates a number of principles that are widely applicable in algorithm design.
The Maximal Rectangle Problem
by David Vandevoorde
Listing One
// Variables to keep track of the best rectangle so far:
best_11 = (0, 0); best_ur = (-1, -1)
main algorithm:
for 11.x = 0 .. N
for 11.y = 0 .. M
for ur.x = 11.x .. N
for ur.y = 11....


