How can i do subtraction of integers in C without using either the unary or binary '-' operator?
Or can we do the same for other data types like float/double?
|
2
|
How can i do subtraction of integers in C without using either the unary or binary '-' operator? Or can we do the same for other data types like float/double?
|
||||||
|
|
|
have a look at the two's complement |
||||||||
|
|
|
Create a lookup table for every possible case of int-int! |
||
|
|
|
|
Pontus is right, 2's complement is not mandated by the C standard (even if it is the de facto hardware standard). +1 for Phil's creative answers; here's another approach to getting -1 without using the standard library or the -- operator. C mandates three possible representations, so you can sniff which is in operation and get a different -1 for each:
The value 0x7FFFFFFFE would depend on the width (number of ‘value bits’) of the type of integer you were interested in; if unspecified, you have more work to find that out! |
||
|
|
|
|
Expand a-b:
a-b = a + (-b)
= a + (-1).b
Manufacture -1:
float: pi = asin(1.0);
(with minusone_flt = sin(3.0/2.0*pi);
math.h) or = cos(2.0*pi)
or = log10(0.1)
complex: minusone_cpx = (0,1)**2; // i squared
integer: minusone_int = 0; minusone_int--; // or convert one of the floats above
|
||
|
|
|
|
a - b = c
restricting ourselves to the number space 0
(a - b) mod(a+b) = c mod(a+b)
a mod(a+b) - b mod(a+b) = c mod(a+b)
simplifying the second term:
(-b).mod(a+b) = (a+b-b).mod(a+b)
= a.mod(a+b)
substituting: a.mod(a+b) + a.mod(a+b) = c.mod(a+b) 2a.mod(a+b) = c.mod(a+b) if b>a, then b-a>0, so: c.mod(a+b) = c c = 2a.mod(a+b) So, if a is always greater than b, then this would work. |
||||||||||
|
|
|
Assembly (accumulator) style:
|
||
|
|
|
As the question asked for integers not |
||
|
|
|
|
Take a look here: Add/Subtract using bitwise operators |
||
|
|
|
|
I suppose this b - a = ~( a + ~b) |
||
|
|
|
For subtracting in C two integers you only need:
I don't believe that there is a simple an elegant solution for float or double numbers like for integers. So you can transform your float numbers in arrays and apply an algorithm similar with one simulated here |
||||
|
|
|
You can convert b to negative value using negation and adding 1:
This is two's complement sign negation. Processor is doing it when you use '-' operator when you want to negate value or subtrackt it. Converting float is simpler. Just negate first bit (shoosh gave you example how to do this). EDIT: Ok, guys. I give up. Here is my compiler independent version:
I'm using unsigned int so that any compiler will treat it the same. If you want to subtract negative values, then do it that way:
Now we are completly independent of signed values conventions. In my approach result all ints will be stored as two's complement - so you have to be careful with bigger ints (they have to start with 0 bit). |
||||||||||
|
|
|
If you want to do it for floats, start from a positive number and change its sign bit like so:
You can also do this for doubles using the appropriate 64 bit integer. in visual studio this is __int64 for instance. |
||||||||||
|
|
|
Given that encoding integers to support two's complement is not mandated in C, iterate until done. If they want you to jump through flaming hoops, no need to be efficient about it!
Silly question... probably silly interview! |
||||||||||
|