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

[leetcode]67.Add Binary

时间:2018-10-01 11:52:46      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:output   tco   rev   结束   bin   java   only   length   input   

题目

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

The input strings are both non-empty and contains only characters 1 or 0.

Example 1:

Input: a = "11", b = "1"
Output: "100"
Example 2:

Input: a = "1010", b = "1011"
Output: "10101"

解法

思路

用两个指针分别指向a和b的末尾,将a和b最后一位分别转为数字,用carry来保存要进位的数字,初始为0。如果a和b相加结束后,carry为1,则在sb之后加一个1,最后将sb逆转就可得到最终的结果,当然,这里也是可以用栈来代替reverse()的。

代码

class Solution {
    public String addBinary(String a, String b) {
        StringBuilder sb = new StringBuilder();
        int i = a.length() - 1;
        int j = b.length() - 1;
        int carry = 0;
        while(i >= 0 || j >= 0) {
            int sum = carry;
            if(i >= 0) sum += a.charAt(i--) - ‘0‘;
            if(j >= 0) sum += b.charAt(j--) - ‘0‘;
            sb.append(sum % 2);
            carry = sum / 2;
        }
        if(carry == 1) sb.append(carry);
        return sb.reverse().toString();
    }
}

[leetcode]67.Add Binary

标签:output   tco   rev   结束   bin   java   only   length   input   

原文地址:https://www.cnblogs.com/shinjia/p/9734308.html

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