码迷,mamicode.com
首页 > 其他好文 > 详细

Add Binary

时间:2014-06-04 19:23:09      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

Given two binary strings, return their sum (also a binary string).

For example,
a = "11"
b = "1"
Return "100".

bubuko.com,布布扣
class Solution {
public:
    string addBinary(string a, string b) 
    {
        string c;
        reverse(a);
        reverse(b);
        
        int size=a.length();
        if(b.length()>size) size=b.length();
        
        int add=0;
        for(int i=0;i<size;i++)
        {
            int add1=0;
            int add2=0;
            if(i<a.length()) add1=a[i]-0;
            if(i<b.length()) add2=b[i]-0;
            c=c+char((add1+add2+add)%2+0);
            add=(add1+add2+add)/2;
        }
        if(add==1) c=c+1;
        reverse(c);
        return c;
    }
    void reverse(string& s)
    {
        int l=0;
        int r=s.length()-1;
        while(l<r)
        {
            char tmp=s[l];
            s[l]=s[r];
            s[r]=tmp;
            l++;r--;
        }
    }
}; 
bubuko.com,布布扣

Add Binary,布布扣,bubuko.com

Add Binary

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/erictanghu/p/3759463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!