Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

67. 二进制求和 #51

Open
swiftwind0405 opened this issue Jan 10, 2021 · 0 comments
Open

67. 二进制求和 #51

swiftwind0405 opened this issue Jan 10, 2021 · 0 comments

Comments

@swiftwind0405
Copy link
Owner

swiftwind0405 commented Jan 10, 2021

方法一:

解题思想:

代码:

var addBinary = function (a, b) {
    while (a.length > b.length) b = '0' + b;
    while (a.length < b.length) a = '0' + a;
    let res = new Array(a.length);
    let sum = 0;
    let carry = 0;
    for (let i = a.length - 1; i >= 0; i--) {
        sum = Number(a[i]) + Number(b[i]) + carry
        if (sum >= 2) {
            res[i] = sum - 2;
            carry = 1;
        } else {
            res[i] = sum;
            carry = 0;
        }
    }
    if (carry) res.unshift(1);
    return res.join('');
};

复杂度分析:

  • 时间复杂度:
  • 空间复杂度:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant