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

LeetCode Add Binary

时间:2017-04-27 23:14:47      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:加法   ott   for   tac   --   turn   rgb   add   pre   

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) {
        stack<int> s;
        int na = a.size() - 1;
        int nb = b.size() - 1;

        int c = 0;
        while (na > -1 || nb > -1) {
            int va = 0;
            if (na > -1) {
                va = a[na] - ‘0‘;
                na--;
            }
            int vb = 0;
            if (nb > -1) {
                vb = b[nb] - ‘0‘;
                nb--;
            }

            int tmp = va + vb + c;
            c = tmp / 2;
            s.push(tmp % 2);
        }

        if (c != 0) s.push(c);

        string ans;
        while (!s.empty()) {
            ans.push_back(s.top()+‘0‘);
            s.pop();
        }

        return ans;
    }
};



LeetCode Add Binary

标签:加法   ott   for   tac   --   turn   rgb   add   pre   

原文地址:http://www.cnblogs.com/liguangsunls/p/6777317.html

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