Algorithms 03
Algorithms 03
By Liam O’Leary
Flowcharts
Defining Algorithms
Algorithms are a means of a series of
detailed instructions used to solve a
problem over a set amount of time, used
in a logical way. Algorithms have 4
different characteristics:
- They always have an end.
- They use standard methods to solve a
problem.
- They use detailed steps.
Pseudocode key words
These are key words used to structure algorithms:
-Begin: To start a program
-End: To finish a program
-Begin Subprograms: To start a sub program
-End Subprograms: To end a sub program
-Case where <condition> otherwise: To allow for many choices
-End case: To end choice
These are Key Pseudocode that are commonly used. Some of these
words can be found in Flow chart Symbols
Common Symbols