hmm i dont think that exactly what an algorithim is as such
a the method part of a recipe is an algoithim it tells you what order the things go in ect
an algorithim is like planing your program with out using any code like say
algorithm:
when the up arrow is pressed move forward
then you code it:
if upkey()=1 then move object 1,10
there are 3 command structures which are how you set out ur algorithims
psudeo code(spelling?) which is basically english written with a little code as such eg:
START
make player object
colour it green
IF enter pressed
DO move player forward
ENDIF
turn enemy right
move enemy forward
END
um another one is NS which stands for some german words
its writen in boxes like
|----------------|
|start |
|----------------|
|make object |
|----------------|
|\ IF enter /|
| \ pressed / |
|true\ /false|
|events\ /events|
|------- |-------|
|blah |
|----------------|
|end |
|----------------|
and then the other i cant rember what its called its when u use a flow chart like boxes joind by lines to show the flow of the proccesing
[start]
|----|
(DO.) | <<event
| | << if false loops up to repaet events
<IF.>--| <<if condition
| << if true it continues
[end]
correct me if im wrong (usually the case somewhere)
trav