fbpx
Wikipedia

TPK algorithm

The TPK algorithm is a simple program introduced by Donald Knuth and Luis Trabb Pardo to illustrate the evolution of computer programming languages. In their 1977 work "The Early Development of Programming Languages", Trabb Pardo and Knuth introduced a small program that 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.

To explain the name "TPK", the authors referred to Grimm's law (which concerns the consonants 't', 'p', and 'k'), the sounds in the word "typical", and their own initials (Trabb Pardo and Knuth).[1] In a talk based on the paper, Knuth said:[2]

You can only appreciate how deep the subject is by seeing how good people struggled with it and how the ideas emerged one at a time. In order to study this—Luis I think was the main instigator of this idea—we take one program—one algorithm—and we write it in every language. And that way from one example we can quickly psych out the flavor of that particular language. We call this the TPK program, and well, the fact that it has the initials of Trabb Pardo and Knuth is just a funny coincidence.

The algorithm edit

Knuth describes it as follows:[3]

We introduced a simple procedure called the “TPK algorithm,” and gave the flavor of each language by expressing TPK in each particular style. […] The TPK algorithm inputs eleven numbers  ; then it outputs a sequence of eleven pairs   where

 

This simple task is obviously not much of a challenge, in any decent computer language.

In pseudocode:

ask for 11 numbers to be read into a sequence S reverse sequence S for each item in sequence S call a function to do an operation if result overflows alert user else print result 

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.

Implementations edit

Implementations in the original paper edit

In the original paper, which covered "roughly the first decade" of the development of high-level programming languages (from 1945 up to 1957), they gave the following example implementation "in a dialect of ALGOL 60", noting that ALGOL 60 was a later development than the languages actually discussed in the paper:[1]

TPK: begin integer i; real y; 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 TPK. 

As many of the early high-level languages could not handle the TPK algorithm exactly, they allow the following modifications:[1]

  • If the language supports only integer variables, then assume that all inputs and outputs are integer-valued, and that sqrt(x) means the largest integer not exceeding  .
  • If the language does not support alphabetic output, then instead of the string 'TOO LARGE', output the number 999.
  • If the language does not allow any input and output, then assume that the 11 input values   have been supplied by an external process somehow, and the task is to compute the 22 output values   (with 999 replacing too-large values of  ).
  • If the language does not allow programmers to define their own functions, then replace f(a[i]) with an expression equivalent to  .

With these modifications when necessary, the authors implement this algorithm in Konrad Zuse's Plankalkül, in Goldstine and von Neumann's flow diagrams, in Haskell Curry's proposed notation, in Short Code of John Mauchly and others, in the Intermediate Program Language of Arthur Burks, in the notation of Heinz Rutishauser, in the language and compiler by Corrado Böhm in 1951–52, in Autocode of Alick Glennie, in the A-2 system of Grace Hopper, in the Laning and Zierler system, in the earliest proposed Fortran (1954) of John Backus, in the Autocode for Mark 1 by Tony Brooker, in ПП-2 of Andrey Ershov, in BACAIC of Mandalay Grems and R. E. Porter, in Kompiler 2 of A. Kenton Elsworth and others, in ADES of E. K. Blum, the Internal Translator of Alan Perlis, in Fortran of John Backus, in ARITH-MATIC and MATH-MATIC from Grace Hopper's lab, in the system of Bauer and Samelson, and (in addenda in 2003 and 2009) PACT I and TRANSCODE. They then describe what kind of arithmetic was available, and provide a subjective rating of these languages on parameters of "implementation", "readability", "control structures", "data structures", "machine independence" and "impact", besides mentioning what each was the first to do.[1]

Implementations in more recent languages edit

C implementation edit

This shows a C implementation equivalent to the above ALGOL 60.

#include <math.h> #include <stdio.h>  double f(double t) {  return sqrt(fabs(t)) + 5 * pow(t, 3); }  int main(void) {  double a[11] = {0}, y;  for (int i = 0; i < 11; i++)  scanf("%lf", &a[i]);   for (int i = 10; i >= 0; i--) {  y = f(a[i]);  if (y > 400)  printf("%d TOO LARGE\n", i);  else  printf("%d %.16g\n", i, y);  } } 

Python implementation edit

This shows a Python implementation.

from math import sqrt  def f(t):  return sqrt(abs(t)) + 5 * t ** 3  a = [float(input()) for _ in range(11)] for i, t in reversed(list(enumerate(a))):  y = f(t)  print(i, "TOO LARGE" if y > 400 else y) 

Rust implementation edit

This shows a Rust implementation.

use std::{io, iter::zip};  fn f(t: f64) -> f64 {  t.abs().sqrt() + 5.0 * t.powi(3) }  fn main() {  let mut a = [0f64; 11];  for (t, input) in zip(&mut a, io::stdin().lines()) {  *t = input.unwrap().parse().unwrap();  }   a.iter().enumerate().rev().for_each(|(i, &t)| match f(t) {  y if y > 400.0 => println!("{i} TOO LARGE"),  y => println!("{i} {y}"),  }); } 

References edit

  1. ^ a b c d Luis Trabb Pardo and Donald E. Knuth, "The Early Development of Programming Languages".
    • First published August 1976 in
    • Published in Encyclopedia of Computer Science and Technology, Jack Belzer, Albert G. Holzman, and Allen Kent (eds.), Vol. 6, pp. 419-493. Dekker, New York, 1977.
    • Reprinted (doi:10.1016/B978-0-12-491650-0.50019-8) in A History of Computing in the Twentieth Century, N. Metropolis, J. Howlett, and G.-C. Rota (eds.), New York, Academic Press, 1980. ISBN 0-12-491650-3
    • Reprinted with amendments as Chapter 1 of Selected Papers on Computer Languages, Donald Knuth, Stanford, CA, CSLI, 2003. ISBN 1-57586-382-0)
  2. ^ "A Dozen Precursors of Fortran", lecture by Donald Knuth, 2003-12-03 at the Computer History Museum: Abstract, video
  3. ^ Donald Knuth, TPK in INTERCAL, Chapter 7 of Selected Papers on Fun and Games, 2011 (p. 41)

External links edit

  • Implementations in many languages at Rosetta Code
  • Implementations in several languages

algorithm, simple, program, introduced, donald, knuth, luis, trabb, pardo, illustrate, evolution, computer, programming, languages, their, 1977, work, early, development, programming, languages, trabb, pardo, knuth, introduced, small, program, that, involved, . The TPK algorithm is a simple program introduced by Donald Knuth and Luis Trabb Pardo to illustrate the evolution of computer programming languages In their 1977 work The Early Development of Programming Languages Trabb Pardo and Knuth introduced a small program that 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 To explain the name TPK the authors referred to Grimm s law which concerns the consonants t p and k the sounds in the word typical and their own initials Trabb Pardo and Knuth 1 In a talk based on the paper Knuth said 2 You can only appreciate how deep the subject is by seeing how good people struggled with it and how the ideas emerged one at a time In order to study this Luis I think was the main instigator of this idea we take one program one algorithm and we write it in every language And that way from one example we can quickly psych out the flavor of that particular language We call this the TPK program and well the fact that it has the initials of Trabb Pardo and Knuth is just a funny coincidence Contents 1 The algorithm 2 Implementations 2 1 Implementations in the original paper 2 2 Implementations in more recent languages 2 2 1 C implementation 2 2 2 Python implementation 2 2 3 Rust implementation 3 References 4 External linksThe algorithm editKnuth describes it as follows 3 We introduced a simple procedure called the TPK algorithm and gave the flavor of each language by expressing TPK in each particular style The TPK algorithm inputs eleven numbers a 0 a 1 a 10 displaystyle a 0 a 1 ldots a 10 nbsp then it outputs a sequence of eleven pairs 10 b 10 9 b 9 0 b 0 displaystyle 10 b 10 9 b 9 ldots 0 b 0 nbsp whereb i f a i if f a i 400 999 if f a i gt 400 f x x 5 x 3 displaystyle b i begin cases f a i amp text if f a i leq 400 999 amp text if f a i gt 400 end cases quad f x sqrt x 5x 3 nbsp This simple task is obviously not much of a challenge in any decent computer language In pseudocode ask for 11 numbers to be read into a sequence S reverse sequence S for each item in sequence S call a function to do an operation if result overflows alert user else print result 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 Implementations editImplementations in the original paper edit In the original paper which covered roughly the first decade of the development of high level programming languages from 1945 up to 1957 they gave the following example implementation in a dialect of ALGOL 60 noting that ALGOL 60 was a later development than the languages actually discussed in the paper 1 TPK begin integer i real y 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 gt 400 then write i TOO LARGE else write i y end end TPK As many of the early high level languages could not handle the TPK algorithm exactly they allow the following modifications 1 If the language supports only integer variables then assume that all inputs and outputs are integer valued and that sqrt x means the largest integer not exceeding x displaystyle sqrt x nbsp If the language does not support alphabetic output then instead of the string TOO LARGE output the number 999 If the language does not allow any input and output then assume that the 11 input values a 0 a 1 a 10 displaystyle a 0 a 1 ldots a 10 nbsp have been supplied by an external process somehow and the task is to compute the 22 output values 10 f 10 9 f 9 0 f 0 displaystyle 10 f 10 9 f 9 ldots 0 f 0 nbsp with 999 replacing too large values of f i displaystyle f i nbsp If the language does not allow programmers to define their own functions then replace f a i with an expression equivalent to a i 5 x 3 displaystyle sqrt a i 5x 3 nbsp With these modifications when necessary the authors implement this algorithm in Konrad Zuse s Plankalkul in Goldstine and von Neumann s flow diagrams in Haskell Curry s proposed notation in Short Code of John Mauchly and others in the Intermediate Program Language of Arthur Burks in the notation of Heinz Rutishauser in the language and compiler by Corrado Bohm in 1951 52 in Autocode of Alick Glennie in the A 2 system of Grace Hopper in the Laning and Zierler system in the earliest proposed Fortran 1954 of John Backus in the Autocode for Mark 1 by Tony Brooker in PP 2 of Andrey Ershov in BACAIC of Mandalay Grems and R E Porter in Kompiler 2 of A Kenton Elsworth and others in ADES of E K Blum the Internal Translator of Alan Perlis in Fortran of John Backus in ARITH MATIC and MATH MATIC from Grace Hopper s lab in the system of Bauer and Samelson and in addenda in 2003 and 2009 PACT I and TRANSCODE They then describe what kind of arithmetic was available and provide a subjective rating of these languages on parameters of implementation readability control structures data structures machine independence and impact besides mentioning what each was the first to do 1 Implementations in more recent languages edit C implementation edit This shows a C implementation equivalent to the above ALGOL 60 include lt math h gt include lt stdio h gt double f double t return sqrt fabs t 5 pow t 3 int main void double a 11 0 y for int i 0 i lt 11 i scanf lf amp a i for int i 10 i gt 0 i y f a i if y gt 400 printf d TOO LARGE n i else printf d 16g n i y Python implementation edit This shows a Python implementation from math import sqrt def f t return sqrt abs t 5 t 3 a float input for in range 11 for i t in reversed list enumerate a y f t print i TOO LARGE if y gt 400 else y Rust implementation edit This shows a Rust implementation use std io iter zip fn f t f64 gt f64 t abs sqrt 5 0 t powi 3 fn main let mut a 0 f64 11 for t input in zip amp mut a io stdin lines t input unwrap parse unwrap a iter enumerate rev for each i amp t match f t y if y gt 400 0 gt println i TOO LARGE y gt println i y References edit a b c d Luis Trabb Pardo and Donald E Knuth The Early Development of Programming Languages First published August 1976 in typewritten draft form as Stanford CS Report STAN CS 76 562 Published in Encyclopedia of Computer Science and Technology Jack Belzer Albert G Holzman and Allen Kent eds Vol 6 pp 419 493 Dekker New York 1977 Reprinted doi 10 1016 B978 0 12 491650 0 50019 8 in A History of Computing in the Twentieth Century N Metropolis J Howlett and G C Rota eds New York Academic Press 1980 ISBN 0 12 491650 3 Reprinted with amendments as Chapter 1 of Selected Papers on Computer Languages Donald Knuth Stanford CA CSLI 2003 ISBN 1 57586 382 0 A Dozen Precursors of Fortran lecture by Donald Knuth 2003 12 03 at the Computer History Museum Abstract video Donald Knuth TPK in INTERCAL Chapter 7 of Selected Papers on Fun and Games 2011 p 41 External links editImplementations in many languages at Rosetta Code Implementations in several languages Retrieved from https en wikipedia org w index php title TPK algorithm amp oldid 1214842590, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.