Pseudocode Algorithm Definition

From GM-RKB
(Redirected from pseudocode)
Jump to navigation Jump to search

A Pseudocode Algorithm Definition is an algorithm definition expressed in a pseudocode language.



References

2013

  • http://en.wikipedia.org/wiki/Pseudocode
    • Pseudocode is an informal high-level description of the operating principle of a computer program or other algorithm.

      It uses the structural conventions of a programming language, but is intended for human reading rather than machine reading. Pseudocode typically omits details that are not essential for human understanding of the algorithm, such as variable declarations, system-specific code and some subroutines. The programming language is augmented with natural language description details, where convenient, or with compact mathematical notation. The purpose of using pseudocode is that it is easier for people to understand than conventional programming language code, and that it is an efficient and environment-independent description of the key principles of an algorithm. It is commonly used in textbooks and scientific publications that are documenting various algorithms, and also in planning of computer program development, for sketching out the structure of the program before the actual coding takes place.

      No standard for pseudocode syntax exists, as a program in pseudocode is not an executable program. Pseudocode resembles, but should not be confused with skeleton programs, including dummy code, which can be compiled without errors. Flowcharts and Unified Modeling Language (UML) charts can be thought of as a graphical alternative to pseudocode, but are more spacious on paper.