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

[LintCode] Add Binary 二进制数相加

时间:2016-08-20 16:00:55      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

 

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

Example

a = 11

b = 1

Return 100

 

LeetCode上的原题,请参见我之前的博客Add Binary

 

class Solution {
public:
    /**
     * @param a a number
     * @param b a number
     * @return the result
     */
    string addBinary(string& a, string& b) {
        string res = "";
        int m = a.size() - 1, n = b.size() - 1, carry = 0;
        while (m >= 0 || n >= 0) {
            int p = m >= 0 ? a[m--] - 0 : 0;
            int q = n >= 0 ? b[n--] - 0 : 0;
            int sum = p + q + carry;
            res = to_string(sum % 2) + res;
            carry = sum / 2;
        }
        return carry == 1 ? "1" + res : res;
    }
};

 

[LintCode] Add Binary 二进制数相加

标签:

原文地址:http://www.cnblogs.com/grandyang/p/5790441.html

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