How to Get the Smallest Number From an Array

Posted December 15th @ 1:01 pm by m3Rlin

The idea is the same as in tip 6.1 but this functions finds the smallest number.

{ You can easily modify this function to accept other numerical types }
function MinInteger(const aInt: array of Integer): Integer;
var
iI: Integer;
begin
Result := aInt[Low(aInt)];
for iI := Low(aInt) + 1 to High(aInt) do
if [...]

How to Get the Largest Number From an Array

Posted December 15th @ 7:37 am by m3Rlin

Sometimes you have to get the largest number out of hundreds of others. This is the simplest way to find it:

{ You can easily modify this function to accept other numerical types }
function MaxInteger(const aInt: array of Integer): Integer;
var
iI: Integer;
begin
[...]

Next Entries »