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

leetcode 67. Add Binary (高精度加法)

时间:2016-04-17 16:09:56      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

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

For example,
a = "11"
b = "1"
Return "100".

简单的二进制高精度加法。

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

 

leetcode 67. Add Binary (高精度加法)

标签:

原文地址:http://www.cnblogs.com/zywscq/p/5401142.html

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