美文网首页
67. Add Binary - easy

67. Add Binary - easy

作者: 沉睡至夏 | 来源:发表于2016-10-20 10:21 被阅读3次

bit by bit的相加,a + b + c的形式
这道题并不难,很多小细节需要注意。
比如:

c += (i>0)? a.charAt(i-1)-'0' : 0;

写成以下形式是不行的,必须跟着等号。

c = c + (i>0)? a.charAt(i-1)-'0' : 0;

另外注意,int和char的混用。
my code:

public class Solution {
    public String addBinary(String a, String b) {
        int i = a.length(), j = b.length(), c=0;
        String s = "";
        while(i>0 || j>0 || c>0) {
            c += (i>0)? a.charAt(i-1)-'0' : 0;
            c += (j>0)? b.charAt(j-1)-'0' : 0;
            s = c%2 + s;
            c = c/2;
            i--; j--;
        }
        return s;
    }
}

Just focus on it. Don't think about other things. --- 10/19/2016

相关文章

网友评论

      本文标题:67. Add Binary - easy

      本文链接:https://www.haomeiwen.com/subject/yzdfuttx.html