Home > Articles > Programming

This chapter is from the book ๏”€

This chapter is from the book

2โ€“5 Average of Two Integers

The following formula can be used to compute the average of two unsigned integers, โŒŠ(x + y)/2โŒ‹ without causing overflow [Dietz]:

The formula below computes โŒˆ(x + y)/2โŒ‰ for unsigned integers:

019equ01.jpg

To compute the same quantities (โ€œfloor and ceiling averagesโ€) for signed integers, use the same formulas, but with the unsigned shift replaced with a signed shift.

For signed integers, one might also want the average with the division by 2 rounded toward 0. Computing this โ€œtruncated averageโ€ (without causing overflow) is a little more difficult. It can be done by computing the floor average and then correcting it. The correction is to add 1 if, arithmetically, x + y is negative and odd. But x + y is negative if and only if the result of (3), with the unsigned shift replaced with a signed shift, is negative. This leads to the following method (seven instructions on the basic RISC, after commoning the subexpression x โŠ• y):

019equ02.jpg

Some common special cases can be done more efficiently. If x and y are signed integers and known to be nonnegative, then the average can be computed as simply 019fig01.jpg. The sum can overflow, but the overflow bit is retained in the register that holds the sum, so that the unsigned shift moves the overflow bit to the proper position and supplies a zero sign bit.

If x and y are unsigned integers and 019fig02.jpg, or if x and y are signed integers and x โ‰ค y (signed comparison), then the average is given by x + 019fig03.jpg. These are floor averages, for example, the average of โˆ’1 and 0 is โˆ’1.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.