67. Add Binary

Posted jtechroad

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了67. Add Binary相关的知识,希望对你有一定的参考价值。

https://leetcode.com/problems/add-binary/description/

class Solution {
public:
    string addBinary(string a, string b) {
        string res;
        int carry = 0;
        for (int ia = a.length() - 1, ib = b.length() - 1; ia >= 0 || ib >= 0; ia--, ib--)
        {
            int ca = ia < 0 ? 0 : a[ia] - 0;
            int cb = ib < 0 ? 0 : b[ib] - 0;
            int c = ca + cb + carry;
            res.push_back(c % 2 + 0);
            carry = c / 2;
        }
        if (carry > 0)
            res.push_back(carry + 0);
        reverse(res.begin(), res.end());
        return res;
    }
};

 

以上是关于67. Add Binary的主要内容,如果未能解决你的问题,请参考以下文章

leetcode67. Add Binary

67. Add Binary

LeetCode----67. Add Binary(java)

67. Add Binary

67. Add Binary

leetcode67. Add Binary