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

LeeCode from 0 —— 67. Add Binary

时间:2018-07-12 21:49:15      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:相加   解题思路   only   als   NPU   contain   from   代码   while   

67. Add Binary

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.

解题思路:

1)将每一位字符都转换为数字,将两个字符串对应位的数字相加。若需要进位,则保存进位的值并在下一次相加时加上进位。对应位若不存在则设为0,相加。

2)若两个字符串所有对应位相加结束,判断最后一个进位是否为1,若为1,则在字符串最前面补1.

C++代码如下:

class Solution {
public:
string addBinary(string a, string b) {
                        int n=a.length()-1;
                        int m=b.length()-1;
                        int p=0;
                        string c="" ;
                        while(n>=0 || m>=0){
                                   int i= n>=0 ? a[n--]-‘0‘:0;
                                   int j= m>=0 ? b[m--]-‘0‘:0;
                                   int sum=i+j+p;
                                  c=to_string(sum%2)+c;
                                  p=sum/2;
                       }
                      c= p==1 ? ‘1‘+c :c;
                      return c;

  }
};

LeeCode from 0 —— 67. Add Binary

标签:相加   解题思路   only   als   NPU   contain   from   代码   while   

原文地址:https://www.cnblogs.com/ssml/p/9301825.html

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