An algorithm is a set of ordered instructions based on a formal language with the following conditions:
- Finite. The number of instructions must be finite.
- Executable. All instructions must be executable in some language-dependent way, in a finite amount of time.
- Deterministic. The algorithm must be predictable.
An algorithm can be expressed in many ways: as a sequence of instructions; as a block-scheme; as a code in an existing or new programming language; as a piece of text in a human language; or in other, similar ways.
An algorithm can solve a class of problems. For example, both "sum 1 and 3" and "sum 4 and 5" are problems in the same class: "sum two integer numbers." Furthermore, a given class of problems can generally be solved by a variety of algorithms.
A key algorithm classification is known as Algorithm Complexity.
Related Links
Additional resources on algorithms include:
