Tool to find the minimum value in a list of numbers, that is to say the smallest possible value approaching 0 (if the numbers are positive) or minus infinity.
Minimum of a List - dCode
Tag(s) : Data Processing
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
Tool to find the minimum value in a list of numbers, that is to say the smallest possible value approaching 0 (if the numbers are positive) or minus infinity.
To find the smallest value (the minimum) among a list of numbers, it is necessary to go through the whole list of numbers and compare their values one after the other. The minimum in the list is the smallest value found when all values have been compared.
Example: The list of 4 values: 8,2,4,6 has for minimum 2
For positive values, the minimum is the value closest to $ 0 $ and for negative values the minimum is the value that is closest to $ -\infty $ (minus infinity).
A naive algorithm for calculating a minimum of a list A of $ n $ integers is:function min(list) {
min = list[0]
for i = 1 , i < n {
if list[i] < min {
min = list[i]
}
}
return min
}
The complexity is of order $ n $, as there are $ n - 1 $ comparisons and in the worst case, $ n $ assignments (if the table is sorted in descending order) and in the best case only 1 assignment (if the minimum is the first value in the list).
dCode retains ownership of the online 'Minimum of a List' tool source code. Except explicit open source licence (indicated CC / Creative Commons / free), any algorithm, applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, translator), or any function (convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (PHP, Java, C#, Python, Javascript, Matlab, etc.) no data, script or API access will be for free, same for Minimum of a List download for offline use on PC, tablet, iPhone or Android !
Please, check our community Discord for help requests!