Encyclopedia > Iteration

  Article Content

Iteration

Iteration is a characteristic of certain algorithms or computer programs in which a sequence of one or more algorithmic steps are performed in a program loop. It is distinguished from the repetitive technique called recursion.

Here is an example, in pseudocode:

    a = 0
    for i = 0 stepby 1 until 3
        a = a + i
    print a  /* "6" is printed */

A process which is repeated again and again it know as a reiterative process. Reiteration is often used in order to converge on the final result when starting with an educated guess.



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
North Haven, New York

... the village the population is spread out with 17.4% under the age of 18, 3.5% from 18 to 24, 22.3% from 25 to 44, 28.7% from 45 to 64, and 28.1% who are 65 years of ...

 
 
 
This page was created in 37.8 ms