首页 > 其他 > 详细

【LeetCode】67. Add Binary 解题小结

时间:2016-09-11 11:31:39      阅读:279      评论: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) {
       string res(a.size()+b.size(),0);
       int i = a.size()-1;
       int j = b.size()-1;
       int k = res.size()-1;
       int carry = 0;
       
       while(i >= 0 || j >= 0 || carry){
           int sum = 0;
           if (i >= 0) sum += a[i--] - 0;
           if (j >= 0) sum += b[j--] - 0;
           if (carry) sum += carry;
           res[k--] = 0 + (sum%2);
           carry = sum / 2;
       }
       
        std::size_t pos = res.find_first_not_of(0);
        return pos == std::string::npos ? "0":res.substr(pos);
    }
};

 

【LeetCode】67. Add Binary 解题小结

原文:http://www.cnblogs.com/Doctengineer/p/5861315.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!