vote up 0 vote down star

I have an array and i want to divide them into page according to preset page size.

This is how i do:

  private int CalcPagesCount()   {

       int  totalPage = imagesFound.Length / PageSize;

        //add the last page, ugly
        if (imagesFound.Length % PageSize != 0) totalPage++;

        return totalPage;
    }

I feel the calculation is not the simplest(I am poor in math), can you give one simpler calculation formula?

flag

2 Answers

vote up 2 vote down check

Force it to round up:

totalPage = (imagesFound.Length + PageSize - 1) / PageSize;

Or use floating point math:

totalPage = (int) Math.Ceiling((double) imagesFound.Length / PageSize);
link|flag
vote up 2 vote down

Actually, you are close to the best you can do. About the only thing that I can think of that might be "better" is something like this:

totalPage = (imagesFound.Length + PageSize - 1) / PageSize;

And the only reason that this is any better is that you avoid the if statement.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.