概述
class Solution{
public:
int Add(int num1,int num2)
{
int res1,res2;
int sum;
res1 = num1 ^ num2;
res2 = num1 & num2;
while(res2)
{
num1 = res1;
num2 = res2 << 1;
res1 = num1 ^ num2;
res2 = num1 & num2;
}
return res1;
}
};
代码为c++
1. 位运算加法 a+b = a^b + (a&b)<< 1
2. &: 与运算
有0为0,无0为1
3. |: 或运算
有1为1,无1为0
4. ^: 异或运算
相同为0,不同为1
5. ~: 取反运算
1为0,0为1
6. <<:左移
7. >>:右移
参考来源:http://blog.csdn.net/zhongjiekangping/article/details/6855864
最后
以上就是神勇水池为你收集整理的位运算计算加法的全部内容,希望文章能够帮你解决位运算计算加法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复