I would hard-code
If the the output is to give a human reader a fast impression of the order of the result, it makes no sense return something like "113/211", so the output should limit itself to using one-digit numbers (and maybe 1/10 and 9/10). If so, you can observe that there are only 27 different fractions.
Since the underlying math for generating the output will never change, a solution could be to simply hard-code a binary search tree, so that the function would perform at most log(27) ~= 4 3/4 comparisons. Here as haXe code:
static function toFrac( f : Float ) : String
{
// assert( TODO: Extract the sign and whole-number part first if f > 0.0 && or f < 1.0);
.
return
if( f < 0.47 )
if( f < 0.25 )
if( f < 0.16 )
if( f < 0.13 )
if( f < 0.11 )
"1/10";
else
"1/9";
else
if( f < 0.14 )
"1/8";
else
"1/7";
else
if( f < 0.19 )
"1/6";
else
if( f < 0.22 )
"1/5";
else
"2/9";
else
if( f < 0.38 )
if( f < 0.29 )
"1/4";
else
if( f < 0.31 )
"2/7";
else
"1/3";
else
if( f < 0.43 )
if( f < 0.40 )
"3/8";
else
"2/5";
else
if( f < 0.44 )
"3/7";
else
"4/9";
else
if( f < 0.71 )
if( f < 0.60 )
if( f < 0.56 )
"1/2";
else
if( f < 0.57 )
"5/9";
else
"4/7";
else
if( f < 0.63 )
"3/5";
else
if( f < 0.66 )
"5/8";
else
"2/3";
else
if( f < 0.80 )
if( f < 0.74 )
"5/7";
else
if(f < 0.78 )
"3/4";
else
"7/9";
else
if( f < 0.86 )
if( f < 0.83 )
"4/5";
else
"5/6";
else
if( f < 0.88 )
"6/7";
else
if( f < 0.89 )
"7/8";
else
if( f < 0.90 )
"8/9";
else
"9/10";
}
The above is haXe code.
