[Home]Pseudocode

HomePage | Recent Changes | Preferences

Showing revision 9
Pseudocode is a generic way of writing source code without using any specific programming language. (However, some people see standardized pseudocode as languages in and of themselves.) Computer science text books often use pseudocode in their examples so that all programmers can understand them, even if they do not all know the same programming languages.

Often pseudocode uses the syntax of one common language (like C or LISP) for common operations like loops, and uses English language text whenever details are unimportant or distracting.

Pseudocode in Wikipedia

Many articles in Wikipedia use pseudocode to demonstrate how an algorithm or data structure works.

Our style of pseudocode uses keywords from C for the some common operations, and, like Python, uses indentation to distinguish the scope of things like loops.

Example operations

Assignment:

<variable> = <expression>

Conditionals:

if <condition>
  do stuff
else
  do other stuff

Note that == (double equal sign), not =, denotes equality; this distinguishes it from the assignment =. An optional colon (':') after the condition improves readability.

Functional conditionals:

if <condition>
  value
else
  other value

Simple loops:

while <condition>
  do stuff

for <variable> from <first value> to <last value> by <step>
  do stuff with variable

Function calls:

<function>(<arguments>)

Function declarations:

function <function name>(<arguments>)
  do stuff with arguments
  return something (optional)

Where it is necessary to distinguish between passing arguments by value or by reference, describe it in English.

Long program lines:

do something that takes a lot of text to describe, and if it doesn't
    fit on one line, continue it indented at least two levels
    (four spaces) inward

Variable declarations:

declare <variable-name> as <type>
declare <variable-name> as <type> = <initial value>
declare <variable-name> as array [<lower-bound> to <upper-bound>] of <type>

type should be an english word or phrase describing the type

Lower and upper bounds can be integers or chars. Note that an array declared [0 to 10] would have eleven elements: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, and 10.

Creating your own types:

class <name_of_new_type>
  <variable declaration(s)>
 

A "class" is a record containing variables called "fields" and optionally functions called "methods" that have an implied argument 'this'. Names of classes most often begin with a capital letter. An "object" is any variable whose type is a class.

Example of accessing fields and methods of an object:

declare grohl as Foo
...
var = grohl.height

This standard still needs work. Care to /Talk ?


HomePage | Recent Changes | Preferences
This page is read-only | View other revisions | View current revision
Edited October 1, 2001 1:21 pm by 61.9.128.xxx (diff)
Search: