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

LeetCode 67. Add Binary

时间:2019-09-19 16:14:16      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:problems   turn   http   problem   ref   code   https   +=   while   

题目

class Solution {
public:
    string addBinary(string a, string b) {
        
        string result="";
        int i=a.length()-1;
        int j=b.length()-1;
        int num=0;
        while(i>=0||j>=0||num>0)
        {
            if(i>=0)
                num+=a[i--]-'0';
            if(j>=0)
                num+=b[j--]-'0';
            if(num==2)
            {
                result+= '0';
                num=1;
            }
            else if(num==3)
            {
                result+='1';
                num=1;
            }
            else 
            {
                result+=num+'0';
                num=0;
            }
        }
        
        string ans="";
        for(int i=result.length()-1;i>=0;i--)
        {
            ans+=result[i];
        }
        
        return ans;
        
    }
};

LeetCode 67. Add Binary

标签:problems   turn   http   problem   ref   code   https   +=   while   

原文地址:https://www.cnblogs.com/dacc123/p/11549845.html

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