I have this ugly code:
if ( v > 10 ) size = 6;
if ( v > 22 ) size = 5;
if ( v > 51 ) size = 4;
if ( v > 68 ) size = 3;
if ( v > 117 ) size = 2;
if ( v > 145 ) size = 1;
return size;
How can I get rid of the multiple if statements?
|
I have this ugly code:
How can I get rid of the multiple if statements? |
||||
| show 14 more comments |
This is better for your case. Optionally you should choose Switch Case where ever possible
|
|||||||||||||||||||||
|
|
How about such approach:
Functionally: (Demonstrated in Scala)
|
|||||||||||||||||||||
|
|
Using the
|
|||||||||||||||||||||
|
|
The most obvious problem with the OPs solution is branching, so I would suggest a polynomial regression. This will result in a nice branchless expression on the form
You will of course not get an exact result, but if you can tolerate some deviance it's a very performant alternative. Since the 'leave unmodified' behavior of to original function for values where For a 45-degree polynomial with the following coefficients,
, you get a beautifully fitted curve:
And as you can see, you get an 1-norm error of just 1.73 across the whole range from 0 to 200*! *Results for |
|||||||||||||||||||||
|
|
|||||||||||||||||||||
|
|
The original code seems fine to me, but if you don't mind multiple returns you might prefer a more tabular approach:
See the multiple return or not discussion in org.life.java's answer. |
|||
|
|
|
There are a ton of answers and suggestions here but I honestly don't see any of them "prettier" or "more elegant" than the original method. If you had dozens or HUNDREDS of iterations to check then I could easily see going to some for loop but honestly, for the handful of comparisons you had, stick with the if's and move on. It's not that ugly. |
|||||||||||
|
|
|||||||||||||||||||||
|
|
Here's my shot at it... Update: Fixed. Previous Solution gave incorrect answers for exact values (10,22,51...). This one defaults to 6 for the if val < 10
|
|||||||||||||
|
|
I have one more version for you. I don't really think it's the best one because it adds unnecessary complexity in the name of "performance" when I'm 100% sure this function will never be a performance hog (unless someone is calculating size in a tight loop a million times ...). But I present it just because I thought performing a hard-coded binary search to be sort of interesting. It doesn't look very binary-y because there aren't enough elements to go very deep, but it does have the virtue that it returns a result in no more than 3 tests rather than 6 as in the original post. The return statements are also in order by size which would help with understanding and/or modification.
|
|||||||||||||||||||
|
|
Here is an object-oriented solution, a class called Syntax:
Code:
Edit: finally replaced the map() method with a more efficient (and shorter) version. I know: a version that searches partitions would still be faster for large arrays, but sorry: I'm too lazy. If you think this is too bloated, consider this:
Sure, all of these features could be easily removed, but the code would be less complete, less usable or less stable. |
|||||||||||||||||||||
|
where 7 is the default value (x <= 10). |
|||||||
|
|
|
My commenting ability isn't turned on yet, hopefully no one will say "rightfully" based on my answer... Pretty-ing up the ugly code could/should be defined as trying to achieve:
IMO the answer given by org.life.java was the prettiest and extremely easy to read. I also liked the order in which the conditions were written, for reasons of reading and performance. Looking over all the comments on this subject, at the time of my writing, it appears that only org.life.java raised the issue of performance (and maybe mfloryan, too, stating something would be "longer"). Certainly in most situations, and given this example it shouldn't bear a noticeable slowdown however you write it. However, by nesting your conditions and optimally ordering the conditions can improve performance [worthwhile, particularly if this were looped]. All that being said, nesting and ordering conditions (that are more complex than your example) brought on by determination to achieve as fast as possible execution will often produce less readable code, and code that's harder to change. I refer again to #3, pragmatism... balancing the needs. |
||||
|
|
|
|||
|
|
|
Is there an underlying mathematical rule to this? If so you should use that: but only if it comes from the problem domain, not just some formula that happens to fit the cases. |
|||
|
|
The obvious answer is to use Groovy:
One liners are always better. Returns 7 for the undefined case where v <= 10. |
|||
|
|
|
This is my code sample, using SortedSet. You initialise boundaries once.
Then use it subsequently this way for multiple values of v (and initialised size)
|
|||||||||||||
|
|
Just for completeness, let me suggest that you could set up an array SIZES with 145 elements so the answer could be returned directly as SIZES[v]. Pardon me for not writing the whole thing out. You would have to make sure v was in range, of course. The only reason I can think of for doing it that way would be if you were going to create the array once and use it thousands of time in an application that had to be really fast. I mention it as an example of a trade-off between memory and speed (not the problem it once was), and also between setup time and speed. |
|||
|
|
It is interesting that there are plenty of beautiful answers for a simple "ugly" question. I like mfloryan's answer best, however I would push it further by removing the hard-coded array inside the method. Something like,
It now becomes more flexible and can process any given array in descending order and the method will find the index where the value 'v' belongs. PS. I cannot comment yet on the answers. |
|||
|
|
|
Actually, if the sizes are likely to change, doing it in the database could be a good alternate strategy:
And a stored procedure or function:
|
||||
|
Here is another way to solve the problem:
Example usage:
|
|||
|
|
|
If you really want the fastest big-O complexity time solution for this particular answer this one is constant lookup.
subsequently
What we are doing here is marking all the possible results of v within the range and where they fall, and then we only need to test for boundary conditions. The issue with this is that it uses more memory and of course if maxBoundary is a lot bigger it will be very space inefficient (as well as take a longer time to initialise). This may sometimes be the best solution for the situation. |
||||
|
|
|
Yet another variation (less pronounced than the answer by George)
|
|||
|
|
This will execute the necessary if statements only. |
|||
>is been used as equation, not==. – BalusC Sep 24 '10 at 16:35