Up/down rounding and rounding programming implementation

Source: Internet
Author: User

In the guava cache to see the implementation of the source code, which has an upward rounding operation, its source code is as follows:

int segmentcapacity = initialcapacity/segmentcount;if (segmentcapacity * Segmentcount < initialcapacity) {++segment capacity;}

About rounding up, down rounding, rounding and other operations, there are different implementations, efficiency, is also basic can be ignored, after all, with less, here on the up/down rounding and rounding the programming implementation of the finishing.


For arithmetic >>>>>>

Rounding Down:

A/b

Rounding up:

(a+b-1)/b

Rounded:

Int (float (a)/b+0.5)


For fixed value >>>>>>

You can use the floor and Ceil functions built into the programming language. Floor (x) returns the largest integer that is less than or equal to X. Ceil (x) returns the smallest integer greater than X.


Here is a simple implementation with no error checking, etc.

int floor (double x) {return (int) x-(x< 0);} int ceil (double x) {return (int) x + (x> 0);} int round (double x) {return floor (x+0.5);}


Up/down rounding and rounding programming implementation

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.