What is an algorithm?

  The algorithm is a recipe for performing a specific task. With algorithms, we meet in everyday life at every step, often without realizing it.

  In the morning, we brush our teeth by roughly following the scheme below:

  1. squeeze a small amount of toothbrush paste,
  2. brush your teeth for 2 minutes,
  3. rinse your mouth a few times with water,
  4. wash the brush under running water.

  Later, we prepare our favorite scrambled eggs for breakfast, also realizing the well-known recipe:

  1. put some fat on the pan, eg butter,
  2. lighting the oven burner,
  3. place the pan with fat on the burner,
  4. pour 3 eggs into the pan, throw the shells in the basket,
  5. pour in two pinches of salt,
  6. stirring wait until the contents of the pan thickens,
  7. turn off the burner,place the pan on the plate and eat it.

  In a similar way, you can describe dozens of activities performed every day, or provide algorithms for their implementation. Each of these rules tells us how a certain initial state of a particular system can be transformed into the desired final state (dirty teeth -> clean teeth, raw eggs -> scrambled eggs).

 

 

  In mathematics and informatics, we also call the algorithm a recipe that tells us how to do a certain task, achieve a specific goal. At the same time, however, we formulate to this provision some strictly defined requirements that must be met in order to be called an algorithm:

The algorithm is an orderly, finite sequence of unambiguously defined activities whose completion in a finite period leads to the solution of the task.

 An example of a mathematical algorithm, finding the absolute value of a number

  1. Load x
  2. Is x <0?
  3. If YES: x: = - x (change the sign to positive)
  4. If NO: do nothing
  5. Write x (the absolute value of the number loaded)

Ways of writing the algorithm

 The algorithms can be presented in various ways: descriptively, in points (so we have done so far), using the instructions of the chosen programming language or graphically, using generally accepted symbols. The latter method is very popular, Below are the symbols that we will use to write the algorithms:

START
START
Tex

The beginning of the algorithm. The origin symbol of the algorithm occurs exactly once. No arrow comes from him, and one goes out.

STOP
STOP
Text is not SVG - cannot display

The end of the algorithm. The symbol of the end of the algorithm, just like the start symbol, must occur in the algorithm once. No arrow comes out of it, and at least one goes.

INPUT/
OUTPUT
INPUT/...
Text is not SVG - cannot display

The input or output block of the algorithm. It presents the action of entering data into the algorithm (eg read: x), as well as outputting the results and messages received (eg, write: y * 5). With an input/output block, exactly one incoming and one outgoing arrow is associated.

 

The operating block contains operations performed by the algorithm. The operating blocks contain all calculations performed during the implementation of the algorithm. Each operating block has exactly one incoming arrow and exactly one outgoing arrow.

?
?
YES
YES
NO
NO
Text is not SVG - cannot display

Decision block, otherwise conditional. Inside the block, we place a condition that can be met or not. If the condition is satisfied, we leave the block with the way described "YES", while if the condition is false, we continue along the path marked with an arrow described as "NO". One entry arrow comes to the decision block and two exit arrows exit ("YES" and "NO").

  Once we have learned the symbols used to graphically present the algorithms, we can draw the previously described algorithm for finding the absolute value of the number:

START
START
Read:
x
Read:...
x < 0
x < 0
x := -x
x := -x
Write:
x
Write:...
STOP
STOP
Y
Y
N
N
Text is not SVG - cannot display