美文网首页
67.二进制求和

67.二进制求和

作者: _道友请留步_ | 来源:发表于2018-05-15 14:13 被阅读0次
    class Solution {
        public String addBinary(String a, String b) {
            List<Integer> list = new LinkedList<>();
            int len = Math.min(a.length(), b.length());
            int index = 0, temp = 0;
            while(index < len){
                int ca = a.charAt(a.length() - 1- index) - 48;
                int cb = b.charAt(b.length() - 1- index) - 48;
                index++;
                if(ca + cb + temp >= 2){ //需要进位
                    list.add((ca + cb + temp) % 2);
                    temp = 1;
                } else {
                    list.add(ca + cb + temp);
                    temp = 0;
                }
            }
            while (index < a.length()){
                int ca = a.charAt(a.length() - 1- index) - 48;
                index++;
                if(ca  + temp >= 2){ //需要进位
                    list.add((ca + temp) % 2);
                    temp = 1;
                } else {
                    list.add(ca + temp);
                    temp = 0;
                }
            }
            while (index < b.length() ){
                int cb = b.charAt(b.length() - 1- index) - 48;
                index++;
                if(cb  + temp >= 2){ //需要进位
                    list.add((cb + temp) % 2);
                    temp = 1;
                } else {
                    list.add(cb + temp);
                    temp = 0;
                }
            }
            if(temp == 1){
                list.add(temp);
            }
            StringBuilder sb = new StringBuilder();
            for(int i = list.size()-1; i >=0; i--){
                sb.append(list.get(i));
            }
            return sb.toString();
        }
    }
    

    相关文章

      网友评论

          本文标题:67.二进制求和

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