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

Add Binary

时间:2014-10-28 23:59:02      阅读:343      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   os   ar   for   sp   

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

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

思路简单(同Add Two Numbers),可从代码得知,需要注意字符在字符串中的插入;

code:

bubuko.com,布布扣
class Solution {
public:
    string addBinary(string a, string b) {
        string result;
        reverse(a.begin(),a.end());
        reverse(b.begin(),b.end());
        
        int maxlength=max(a.size(),b.size());
        int carry=0;
        
        for(int i=0;i<maxlength;++i)
        {
            int ai=i<a.size() ? a[i]-0:0;
            int bi=i<b.size() ? b[i]-0:0;
            
            int sum=ai+bi+carry;
            result.insert(result.begin(),sum%2+0);
            carry=sum/2;
        }
        
        if(carry==1)
            result.insert(result.begin(),1);
        return result;
    }
};
View Code

 

Add Binary

标签:style   blog   http   io   color   os   ar   for   sp   

原文地址:http://www.cnblogs.com/chengyuz/p/4057952.html

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