Two binary numbers can be represented in the usual "regular, redundant" representation (i.e. introduce another digit, say 2, to obtain a non-unique representation such that any two consecutive 2's have a zero in between), so that addition becomes carry-free. I have heard that the complexity is O(k), where k is the length of the shorter of the two numbers. But what is the algorithm itself? It doesn't seem to appear on the web anywhere. I know you can add 1 to such a representation in constant time so that the result maintains regularity. But I don't know how to generalize this.

link|improve this question
Padding every other digits to absorb the carries .. this is equivalent to XOR. – kefeizhou Feb 15 '11 at 5:18
Could you please be a little more explicit? By "padding", what do you mean? And why every other digit? – user616847 Feb 15 '11 at 6:35
en.wikipedia.org/wiki/Redundant_binary_representation . If by complexity you mean worst-case, count me as highly suspicious that there's a way to achieve O(1) for repeated increments. – a dabbler Feb 15 '11 at 12:37
The wikipedia doesn't tell me anything about the actual algorithm though. I would be grateful if you would be a little more specific about it. The web did not help at all. :( – user616847 Feb 15 '11 at 17:44
Follow the pointers from Wikipedia. It looks as though carry-freedom is used to limit the depth of hardware adders; I can find no reference to the claim of O(k). – a dabbler Feb 15 '11 at 22:11
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.