Encyclopedia > Reiterative

  Article Content

Iteration

Redirected from Reiterative

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
242

... 2nd century - 3rd century - 4th century Decades: 190s 200s 210s 220s 230s - 240s - 250s 260s 270s 280s 290s Years: 237 238 239 240 241 - 242 - 243 ...

 
 
 
This page was created in 26 ms