Review Article

Information Compression as a Unifying Principle in Human Learning, Perception, and Cognition

Algorithm 1

A simple recursive function showing how, via computing, it is possible to create repeated (redundant) copies of “Oranges and lemons, Say the bells of St. Clement’s;”.
void oranges_and_lemons(int x)
printf("Oranges and lemons, Say the bells of St. Clements; ");
if (x > 1) oranges_and_lemons(x - 1);
.