You can build your own very easily. C++ string class provide at(), size(), operator[] etc for you to do what you want.
You can start compare from left to right. If the string1 leftmost character is higher string2 leftmost character, then can terminate checking and decide the string1 is bigger. Of cuz there are other minor details like what if . is not inside should still consider, leading, trailing spaces counted or not etc etc.
Idea is there are enough methods in C++ string class for you to build your own comparison.
I would probably store the first string a variable and compare each new string to it in a loop and if it is greater than it will overwrite it and so on since you only want the highest number and not the highest and lowest.
But I am a newb so this is probably.
so basically I would try:
grab string (however you are getting it)
highest number = string;
while(you can grab string) {
if (string > highest number) {
highest number = string;
}
}
This probably too basic for what you want but this is how I would attempt it.
PS- Oh, so all numbers are stored as string format. Can you typecast them all to floats and then compare?