Standard Algorithim – Find Minimum

The find minimum standard algorithim uses the same loop and selection as the other standard algorithms. The key to this algorithm is setting the minimum value at the start of the program

  1. Set minimum to 1st item in array
  2. for each item on the list
  3. if current item < minimum then set minimum to current item
  4. next