Jump to content

TPK algorithm

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 216.251.209.111 (talk) at 18:05, 9 November 2004. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

The Trabb Pardo-Knuth algorithm is a program introduced by Donald Knuth and Luis Trabb Pardo to illustrate the evolution of computer programming languages.

Background

In their work "The early development of Programming Languages", Trabb Pardo and Knuth introduced a trivial program which involved arrays, indexing, mathematical functions, subroutines, I/O, conditionals and iteration. They then wrote implementations of the algorithm in several early programming languages to show how such concepts were expressed.

The algorithm

In ALGOL:

   begin integer i; real array a[0:10];
   real procedure f(t); real t; value t;
     f := sqrt(abs(t))+5*t^3;
   for i := 0 step 1 until 10 do read(a[i]);
   for i := 10 step -1 until 0 do
     begin y := f(a[i]);
           if y > 400 then write(i, "TOO LARGE")
           else write(i,y);
     end
   end

The algorithm reads eleven numbers from an input device, stores them in an array, and then processes them in reverse order, applying a user-defined function to each value and reporting either the value of the function or a message to the effect that the value has exceeded some threshold.

Perl golf

The following Perl implementation is 183 bytes. It is shown here on several lines due to page width considerations, but it could be run as a one-liner.

print join("\n",reverse(map(join(' ',@$_),
map([$_->[0],($_->[1]>400?'TOO LARGE':$_->[1])],
map([$_->[0],sub{sqrt(abs($_[0]))+5*$_[0]**3}->($_->[1])],
map([$_+0,$_=<>],(0..2))))))),"\n";

References

  • "The Early Development of Programming Languages" in A History of Computing in the Twentieth Century, New York, Academic Press, 1980. ISBN 0124916503

See also