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

leetcode[67]Add Binary

时间:2015-02-09 15:32:50      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

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

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

class Solution {
public:
string addBinary(string a, string b) 
{
    int lena=a.size();
    int lenb=b.size();
    if (lena==0)return b;
    if (lenb==0)return a;
    string c="";
    int flag=0;
    while(lena>0&&lenb>0)
    {
        int temp=a[lena-1]-0+b[lenb-1]-0+flag;
        c=char(temp%2+0)+c;
        flag=temp/2;
        lena--;
        lenb--;
    }
    while(lena>0)
    {
        int temp=a[lena-1]-0+flag;
        c=char(temp%2+0)+c;
        flag=temp/2;
        lena--;
    }
    while(lenb>0)
    {
        int temp=b[lenb-1]-0+flag;
        c=char(temp%2+0)+c;
        flag=temp/2;
        lenb--;
    }
    if(flag>0)c=char(flag+0)+c;
    return c;
}
};

 

leetcode[67]Add Binary

标签:

原文地址:http://www.cnblogs.com/Vae98Scilence/p/4281495.html

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