vote up 3 vote down star
3

A friend and I are going back and forth with brain-teasers and I have no idea how to solve this one. My assumption is that it's possible with some bitwise operators, but not sure.

flag

75% accept rate
Should have mentioned that no operators can be used. So 4--3 doesn't work. – pomeranian Dec 13 '08 at 18:15
curses! Look up binary addition... Apart from keeping track of the carry flag, it can be done with simple boolean operations. – Andrew Rollings Dec 13 '08 at 18:17
Thanks Andrew, I have looked at binary addition and can do it on paper, but am having trouble coming up with an algorithm in code. – pomeranian Dec 13 '08 at 18:19
Well, if you can do it on paper, write out each step and generate pseudocode... Basically you should be able to loop through the bits and add them, making sure you keep the carry bit for the next bit in the loop... At the end of it, you'll have your result. – Andrew Rollings Dec 13 '08 at 18:22
Ok that makes sense, I think I'm just struggling with the initial issue of looping through the bits. Can I do this without some kind of counter (i.e. I can't use something like i++ either)? – pomeranian Dec 13 '08 at 18:25
show 6 more comments

11 Answers

vote up 14 vote down check

In C, with bitwise operators:

#include<stdio.h>

int add(int x, int y) {
    int a, b;
    do {
        a = x & y;
        b = x ^ y;
        x = a << 1;
        y = b;
    } while (a);
    return b;
}


int main( void ){
    printf( "2 + 3 = %d", add(2,3));
    return 0;
}
link|flag
Thank you. I am afraid to ask, but does subtraction work similarly? I read that I can just add the two's complement. But when I try to, say, subtract 6-3, and turn that into 6+(-3) using two's complement, I get an infinite loop in the above algorithm. – pomeranian Dec 13 '08 at 18:39
add(6, -3) should work, you can play with the code here: codepad.org/iWSRSsUn – CMS Dec 13 '08 at 18:43
Left shifting a negative value is undefined behavior, it will work as expected on many processors but it isn't guaranteed, you should point this out in your answer. Also, can you add a \n to your printf statement? Aside from that, nice answer. – Robert Gamble Dec 13 '08 at 19:23
I tried converting your algorithm into Python (codepad.org/pb8IuLnY) and am experiencing an infinite loop when a negative number is passed in (i.e. the subtract). Are Python's operators any different than C? – pomeranian Dec 13 '08 at 20:13
@pomeranian.myopenid.com, it is most likely due to the way the left-shift operator is handled in Python. Instead of reaching an upper limit on the integer bits, and setting the highest bit to make a number negative, it becomes positive long integers. – Adam K. Johnson Dec 14 '08 at 18:24
vote up 1 vote down

Why not just incremet the first number as often, as the second number?

link|flag
Incrementing is just adding 1, so the original issue still exists. – pomeranian Dec 13 '08 at 18:17
not really, INC and ADD are to different opcodes in machine language ;) – sindre j Dec 13 '08 at 23:21
vote up 4 vote down

Cheat. You could negate the number and subract it from the first :)

Failing that, look up how a binary adder works. :)

EDIT: Ah, saw your comment after I posted.

Details of binary addition are here.

link|flag
vote up 1 vote down

The reason ADD is implememted in assembler as a single instruction, rather than as some combination of bitwise operations, is that it is hard to do. You have to worry about the carries from a given low order bit to the next higher order bit. This is stuff that the machines do in hardware fast, but that even with C, you can't do in software fast.

link|flag
vote up 3 vote down

Define "best". Here's a python version:

len(range(x)+range(y))

The + there is list catenation, not addition.

link|flag
vote up 0 vote down

Adding two integers is not that difficult; there are many examples of binary addition online.

A more challenging problem is floating point numbers! There's an example at http://pages.cs.wisc.edu/~smoler/x86text/lect.notes/arith.flpt.html

link|flag
vote up 1 vote down

Note, this would be for an adder known as a ripple-carry adder, which works, but does not perform optimally. Most binary adders built into hardware are a form of fast adder such as a carry-look-ahead adder.

My ripple-carry adder works for both unsigned and 2's complement integers if you set carry_in to 0, and 1's complement integers if carry_in is set to 1. I also added flags to show underflow or overflow on the addition.

#define BIT_LEN 32
#define ADD_OK 0
#define ADD_UNDERFLOW 1
#define ADD_OVERFLOW 2

int ripple_add(int a, int b, char carry_in, char* flags) {
    int result = 0;
    int current_bit_position = 0;
    char a_bit = 0, b_bit = 0, result_bit = 0;

    while ((a || b) && current_bit_position < BIT_LEN) {
        a_bit = a & 1;
        b_bit = b & 1;
        result_bit = (a_bit ^ b_bit ^ carry_in);
        result |= result_bit << current_bit_position++;
        carry_in = (a_bit & b_bit) | (a_bit & carry_in) | (b_bit & carry_in);
        a >>= 1;
        b >>= 1;
    }

    if (current_bit_position < BIT_LEN) {
        *flags = ADD_OK;
    }
    else if (a_bit & b_bit & ~result_bit) {
        *flags = ADD_UNDERFLOW;
    }
    else if (~a_bit & ~b_bit & result_bit) {
        *flags = ADD_OVERFLOW;
    }
    else {
        *flags = ADD_OK;
    }

    return result;
}
link|flag
Wow, I'll try this out. Thanks! – pomeranian Dec 13 '08 at 19:48
Unfortunately the increment operator (current_bit_position++) requires addition. Nitpicky, I know. – pomeranian Dec 14 '08 at 16:50
@pomeranian.myopenid.com yeah, that is true in this case. In hardware, there is separate logic gates for each bit, and doesn't use a loop. If this loop were to be unrolled, you could use it without the ++ operator. – Adam K. Johnson Dec 14 '08 at 18:17
vote up 1 vote down

No + right?

int add(int a, int b) 
{
   return -(-a) - (-b);
}
link|flag
In the question comments, @pomeranian.myopenid.com mentions that no arithmetic operators can be used. Besides, it would be better put as a - (-b) to use subtraction as the substitute operation. – Adam K. Johnson Dec 13 '08 at 19:17
vote up 0 vote down

an abacus will do this quite well, and it doesn't use any electricity!

link|flag
vote up 1 vote down

int add(int a, int b) { const char *c=0; return &(&c[a])[b]; }

link|flag
vote up 0 vote down

CMS Can you please explain the logic? I am unable to understand your logic

link|flag

Your Answer

Get an OpenID
or

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