vote up 5 vote down star
1

Is there a safe way of adding a digit at the end of an integer without converting it to a string and without using stringstreams ?

I tried to google the answer for this and most solutions suggested converting it to a string and using stringstreams but I would like to keep it as an integer to ensure data integrity and to avoid converting types.
I also read a solution which suggested to multiply the int by 10 and then adding the digit, however this might cause an integer overflow.
Is this safe to do or is there a better method for doing this? And if I do this multiply by 10 and add the digits solution, what precautions should I take?

flag

3 Answers

vote up 22 vote down check

Your best bet is the multiplication by 10 and addition of the value. You could do a naive check like so:

assert(digit >= 0 && digit < 10);
newValue = (oldValue * 10) + digit;
if (newValue < oldValue)
{
    // overflow
}
link|flag
excellent! thank you very much! – nmuntz May 26 at 19:42
The overflow check is wrong. For example, 4772185889 - 2^32 = 477218593, which is greater than 477218588. – Steve Jessop May 26 at 20:10
I agree, I linked to where you can get a less than naive implementation. – sixlettervariables May 26 at 20:40
+1 for linking to CERT. – mskfisher May 27 at 12:57
vote up 3 vote down

To prevent overflow:

if ((0 <= value) && (value <= ((MAX_INT - 9) / 10))) {
    return (value * 10) + digit;
}

In place of MAX_INT, you could use std::numeric_limits<typeof(value)>::max() or similar, to support types other than int.

link|flag
vote up 1 vote down
  assert(digit >= 0 && digit < 10);
  newvalue = 10 * oldvalue;
  if (oldvalue < 0 ) {
    newvalue -= digit;
  } else {
    newvalue += digit;
  }

  // check for overflow SGN(oldvalue) == 0 || SGN(newvalue) == SGN(oldvalue)
link|flag

Your Answer

Get an OpenID
or

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