如何在不使用++或+或任何其他算术运算符的情况下添加两个数字?
这是一个很久以前在一些校园采访中提出的问题。无论如何,今天有人问了一些有关操作的问题,并且在回答中提到了一个漂亮的问题 Stanford bit twiddling 。我花了一些时间研究它,并认为实际上可能有一个问题的答案。我不知道,我找不到一个。答案是否存在?
答案 0 :(得分:96)
这是我前一段时间为了好玩而写的。它使用two's complement表示,并使用进位的重复移位实现加法,实现其他运算符主要是添加。
#include <stdlib.h> /* atoi() */
#include <stdio.h> /* (f)printf */
#include <assert.h> /* assert() */
int add(int x, int y) {
int carry = 0;
int result = 0;
int i;
for(i = 0; i < 32; ++i) {
int a = (x >> i) & 1;
int b = (y >> i) & 1;
result |= ((a ^ b) ^ carry) << i;
carry = (a & b) | (b & carry) | (carry & a);
}
return result;
}
int negate(int x) {
return add(~x, 1);
}
int subtract(int x, int y) {
return add(x, negate(y));
}
int is_even(int n) {
return !(n & 1);
}
int divide_by_two(int n) {
return n >> 1;
}
int multiply_by_two(int n) {
return n << 1;
}
int multiply(int x, int y) {
int result = 0;
if(x < 0 && y < 0) {
return multiply(negate(x), negate(y));
}
if(x >= 0 && y < 0) {
return multiply(y, x);
}
while(y > 0) {
if(is_even(y)) {
x = multiply_by_two(x);
y = divide_by_two(y);
} else {
result = add(result, x);
y = add(y, -1);
}
}
return result;
}
int main(int argc, char **argv) {
int from = -100, to = 100;
int i, j;
for(i = from; i <= to; ++i) {
assert(0 - i == negate(i));
assert(((i % 2) == 0) == is_even(i));
assert(i * 2 == multiply_by_two(i));
if(is_even(i)) {
assert(i / 2 == divide_by_two(i));
}
}
for(i = from; i <= to; ++i) {
for(j = from; j <= to; ++j) {
assert(i + j == add(i, j));
assert(i - j == subtract(i, j));
assert(i * j == multiply(i, j));
}
}
return 0;
}
答案 1 :(得分:51)
或者,与Jason的逐位方法相比,您可以并行计算多个位 - 对于大数字,这应该运行得更快。在每个步骤中找出携带部分和总和的部分。您尝试将进位添加到总和,这可能导致再次进位 - 因此循环。
>>> def add(a, b):
while a != 0:
# v carry portion| v sum portion
a, b = ((a & b) << 1), (a ^ b)
print b, a
return b
当你加1和3时,两个数字都设置了1位,所以1 + 1的总和就是。下一步,你加2到2,并进入正确的四和。这导致退出
>>> add(1,3)
2 2
4 0
4
或更复杂的例子
>>> add(45, 291)
66 270
4 332
8 328
16 320
336
修改强> 要使它能够在签名数字上轻松工作,您需要在a和b
上引入上限>>> def add(a, b):
while a != 0:
# v carry portion| v sum portion
a, b = ((a & b) << 1), (a ^ b)
a &= 0xFFFFFFFF
b &= 0xFFFFFFFF
print b, a
return b
尝试
add(-1, 1)
看到单个位在整个范围内传输并溢出超过32次迭代
4294967294 2
4294967292 4
4294967288 8
...
4294901760 65536
...
2147483648 2147483648
0 0
0L
答案 2 :(得分:20)
int Add(int a, int b)
{
while (b)
{
int carry = a & b;
a = a ^ b;
b = carry << 1;
}
return a;
}
答案 3 :(得分:17)
您可以将adder circuit转换为算法。它们只进行按位运算=)
答案 4 :(得分:7)
好吧,用布尔运算符实现等价是非常简单的:你做一个逐位求和(这是一个XOR),带进位(它是一个AND)。像这样:
int sum(int value1, int value2)
{
int result = 0;
int carry = 0;
for (int mask = 1; mask != 0; mask <<= 1)
{
int bit1 = value1 & mask;
int bit2 = value2 & mask;
result |= mask & (carry ^ bit1 ^ bit2);
carry = ((bit1 & bit2) | (bit1 & carry) | (bit2 & carry)) << 1;
}
return result;
}
答案 5 :(得分:6)
你已经得到了一些操作答案。这是不同的东西。
在C中,arr[ind] == *(arr + ind)
。这让我们可以稍微混淆(但合法)int arr = { 3, 1, 4, 5 }; int val = 0[arr];
。
因此我们可以定义一个自定义添加函数(没有明确使用算术运算符):
unsigned int add(unsigned int const a, unsigned int const b)
{
/* this works b/c sizeof(char) == 1, by definition */
char * const aPtr = (char *)a;
return (int) &(aPtr[b]);
}
或者,如果我们想要避免这种技巧,并且如果算术运算符包含|
,&
和^
(因此不允许直接位操作),我们可以通过查找表来实现:
typedef unsigned char byte;
const byte lut_add_mod_256[256][256] = {
{ 0, 1, 2, /*...*/, 255 },
{ 1, 2, /*...*/, 255, 0 },
{ 2, /*...*/, 255, 0, 1 },
/*...*/
{ 254, 255, 0, 1, /*...*/, 253 },
{ 255, 0, 1, /*...*/, 253, 254 },
};
const byte lut_add_carry_256[256][256] = {
{ 0, 0, 0, /*...*/, 0 },
{ 0, 0, /*...*/, 0, 1 },
{ 0, /*...*/, 0, 1, 1 },
/*...*/
{ 0, 0, 1, /*...*/, 1 },
{ 0, 1, 1, /*...*/, 1 },
};
void add_byte(byte const a, byte const b, byte * const sum, byte * const carry)
{
*sum = lut_add_mod_256[a][b];
*carry = lut_add_carry_256[a][b];
}
unsigned int add(unsigned int a, unsigned int b)
{
unsigned int sum;
unsigned int carry;
byte * const aBytes = (byte *) &a;
byte * const bBytes = (byte *) &b;
byte * const sumBytes = (byte *) ∑
byte * const carryBytes = (byte *) &carry;
byte const test[4] = { 0x12, 0x34, 0x56, 0x78 };
byte BYTE_0, BYTE_1, BYTE_2, BYTE_3;
/* figure out endian-ness */
if (0x12345678 == *(unsigned int *)test)
{
BYTE_0 = 3;
BYTE_1 = 2;
BYTE_2 = 1;
BYTE_3 = 0;
}
else
{
BYTE_0 = 0;
BYTE_1 = 1;
BYTE_2 = 2;
BYTE_3 = 3;
}
/* assume 4 bytes to the unsigned int */
add_byte(aBytes[BYTE_0], bBytes[BYTE_0], &sumBytes[BYTE_0], &carryBytes[BYTE_0]);
add_byte(aBytes[BYTE_1], bBytes[BYTE_1], &sumBytes[BYTE_1], &carryBytes[BYTE_1]);
if (carryBytes[BYTE_0] == 1)
{
if (sumBytes[BYTE_1] == 255)
{
sumBytes[BYTE_1] = 0;
carryBytes[BYTE_1] = 1;
}
else
{
add_byte(sumBytes[BYTE_1], 1, &sumBytes[BYTE_1], &carryBytes[BYTE_0]);
}
}
add_byte(aBytes[BYTE_2], bBytes[BYTE_2], &sumBytes[BYTE_2], &carryBytes[BYTE_2]);
if (carryBytes[BYTE_1] == 1)
{
if (sumBytes[BYTE_2] == 255)
{
sumBytes[BYTE_2] = 0;
carryBytes[BYTE_2] = 1;
}
else
{
add_byte(sumBytes[BYTE_2], 1, &sumBytes[BYTE_2], &carryBytes[BYTE_1]);
}
}
add_byte(aBytes[BYTE_3], bBytes[BYTE_3], &sumBytes[BYTE_3], &carryBytes[BYTE_3]);
if (carryBytes[BYTE_2] == 1)
{
if (sumBytes[BYTE_3] == 255)
{
sumBytes[BYTE_3] = 0;
carryBytes[BYTE_3] = 1;
}
else
{
add_byte(sumBytes[BYTE_3], 1, &sumBytes[BYTE_3], &carryBytes[BYTE_2]);
}
}
return sum;
}
答案 6 :(得分:5)
所有算术运算都分解为按位操作,使用NAND,AND,OR等门在电子设备中实现。
答案 7 :(得分:5)
对于无符号数,使用与在第一类中学习的相同的加法算法,但是对于基数2而不是基数10.对于3 + 2(基数10)的示例,即基数2中的11 + 10:
1 ‹--- carry bit
0 1 1 ‹--- first operand (3)
+ 0 1 0 ‹--- second operand (2)
-------
1 0 1 ‹--- total sum (calculated in three steps)
答案 8 :(得分:4)
如果您感觉喜剧,那么添加两个(相对较小的)无符号整数的方法总是非常糟糕。代码中的任何地方都没有算术运算符。
在C#中:
static uint JokeAdder(uint a, uint b)
{
string result = string.Format(string.Format("{{0,{0}}}{{1,{1}}}", a, b), null, null);
return result.Length;
}
在C中,使用stdio(在Microsoft编译器上用_snprintf替换snprintf):
#include <stdio.h>
unsigned int JokeAdder(unsigned int a, unsigned int b)
{
return snprintf(NULL, 0, "%*.*s%*.*s", a, a, "", b, b, "");
}
答案 9 :(得分:3)
这是一个紧凑的C解决方案。有时递归比循环更具可读性。
int add(int a, int b){
if (b == 0) return a;
return add(a ^ b, (a & b) << 1);
}
答案 10 :(得分:1)
#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;
}
答案 11 :(得分:1)
## to add or subtract without using '+' and '-' ##
#include<stdio.h>
#include<conio.h>
#include<process.h>
void main()
{
int sub,a,b,carry,temp,c,d;
clrscr();
printf("enter a and b:");
scanf("%d%d",&a,&b);
c=a;
d=b;
while(b)
{
carry=a&b;
a=a^b;
b=carry<<1;
}
printf("add(%d,%d):%d\n",c,d,a);
temp=~d+1; //take 2's complement of b and add it with a
sub=c+temp;
printf("diff(%d,%d):%d\n",c,d,temp);
getch();
}
答案 12 :(得分:1)
short int ripple_adder(short int a, short int b)
{
short int i, c, s, ai, bi;
c = s = 0;
for (i=0; i<16; i++)
{
ai = a & 1;
bi = b & 1;
s |= (((ai ^ bi)^c) << i);
c = (ai & bi) | (c & (ai ^ bi));
a >>= 1;
b >>= 1;
}
s |= (c << i);
return s;
}
答案 13 :(得分:0)
在不使用+
,*
运算符的情况下实现添加,乘法的代码;
对于减法,将1的补码+1加到add
函数
#include<stdio.h>
unsigned int add(unsigned int x,unsigned int y)
{
int carry=0;
while (y != 0)
{
carry = x & y;
x = x ^ y;
y = carry << 1;
}
return x;
}
int multiply(int a,int b)
{
int res=0;
int i=0;
int large= a>b ? a :b ;
int small= a<b ? a :b ;
for(i=0;i<small;i++)
{
res = add(large,res);
}
return res;
}
int main()
{
printf("Sum :: %u,Multiply is :: %d",add(7,15),multiply(111,111));
return 0;
}
答案 14 :(得分:0)
这可以递归地完成:
int add_without_arithm_recursively(int a, int b)
{
if (b == 0)
return a;
int sum = a ^ b; // add without carrying
int carry = (a & b) << 1; // carry, but don’t add
return add_without_arithm_recursively(sum, carry); // recurse
}
或迭代地:
int add_without_arithm_iteratively(int a, int b)
{
int sum, carry;
do
{
sum = a ^ b; // add without carrying
carry = (a & b) << 1; // carry, but don’t add
a = sum;
b = carry;
} while (b != 0);
return a;
}
答案 15 :(得分:0)
问题是如何添加两个数字,所以我不明白为什么所有的解决方案都提供了两个整数的加法?如果两个数字是浮点数,即2.3 + 1.8
,它们也不被认为是数字怎么办?问题需要修改或答案。
对于浮点数,我认为数字应该被分解为它们的组成部分,即2.3 = 2 + 0.3
,然后0.3
应该通过乘以指数因子转换为整数表示,即0.3 = 3 * 10^-1
执行相同的操作对于另一个数字,然后使用一个位移方法添加整数段作为上面的解决方案给出处理情况以便转移到单位数字位置,即2.7 + 3.3 = 6.0 = 2+3+0.7+0.3 = 2 + 3 + 7x10^-1 + 3x10^-1 = 2 + 3 + 10^10^-1
(这可以作为两个单独的添加处理{{1 }然后2+3=5
)
答案 16 :(得分:0)
以下方法可行。
x - (-y)
答案 17 :(得分:0)
您可以使用double negetive来添加两个整数,例如:
int sum2(int a, int b){
return -(-a-b);
}
答案 18 :(得分:0)
不使用任何运算符将两个整数相加可以通过以下不同方式完成:
int sum_of_2 (int a, int b){
int sum=0, carry=sum;
sum =a^b;
carry = (a&b)<<1;
return (b==0)? a: sum_of_2(sum, carry);
}
// Or you can just do it in one line as follows:
int sum_of_2 (int a, int b){
return (b==0)? a: sum_of_2(a^b, (a&b)<<1);
}
// OR you can use the while loop instead of recursion function as follows
int sum_of_2 (int a, int b){
if(b==0){
return a;
}
while(b!=0){
int sum = a^b;
int carry = (a&b)<<1;
a= sum;
b=carry;
}
return a;
}
答案 19 :(得分:-1)
int add_without_arithmatic(int a, int b)
{
int sum;
char *p;
p = (char *)a;
sum = (int)&p[b];
printf("\nSum : %d",sum);
}
答案 20 :(得分:-1)
如上所述,可以用单行代码完成:
while($row = $stmt->fetch()){
$recipients[] = $row["email"];
}
答案 21 :(得分:-1)
我认为这段代码对于添加两个没有加号运算符
的数字会很有帮助[]