I'm thinking in particular of how to display pagination controls, when using a language such as C# or Java.
If I have x items which I want to display in chunks of y per page, how many pages will be needed?
|
|
Found an elegant solution:
|
|||||||||||||||||||||
|
|
Converting to floating point and back seems like a huge waste of time at the CPU level. Ian Nelson's solution:
Can be simplified to:
AFAICS, this doesn't have the overflow bug that Brandon DuRette pointed out, and because it only uses it once, you don't need to store the recordsPerPage specially if it comes from an expensive function to fetch the value from a config file or something. I.e. this might be inefficient, if config.fetch_value used a database lookup or something:
This creates a variable you don't really need, which probably has (minor) memory implications and is just too much typing:
This is all one line, and only fetches the data once:
|
|||||||||||
|
|
This should give you what you want. You will definitely want x items divided by y items per page, the problem is when uneven numbers come up, so if there is a partial page we also want to add one page.
|
|||||
|
|
For C# the solution is to cast the values to a double (as Math.Ceiling takes a double):
In java you should do the same with Math.ceil(). |
|||||||||||||
|
|
The integer math solution that Ian provided is nice, but suffers from an integer overflow bug. Assuming the variables are all
If |
|||||||||||||||||||
|
|
For records == 0, rjmunro's solution gives 1. The correct solution is 0. That said, if you know that records > 0 (and I'm sure we've all assumed recordsPerPage > 0), then rjmunro solution gives correct results and does not have any of the overflow issues.
All the integer math solutions are going to be more efficient than any of the floating point solutions. |
||||
|
|
A variant of Nick Berardi's answer that avoids a branch:
Note: |
|||
|
|
|
Another alternative is to use the mod() function (or '%'). If there is a non-zero remainder then increment the integer result of the division. |
|||
|
|
|
Alternative to remove branching in testing for zero:
Not sure if this will work in C#, should do in C/C++. |
|||
|
|
|
A generic method, whose result you can iterate over may be of interest:
|
|||
|
|
The following should do rounding better than the above solutions, but at the expense of performance (due to floating point calculation of 0.5*rctDenominator):
|
||||
|
|
|
I had a similar need where I needed to convert Minutes to hours & minutes. What I used was:
|
||||
|
|
|
You'll want to do floating point division, and then use the ceiling function, to round up the value to the next integer. |
|||
|
|