Leetcode 67

Posted 村雨sup

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 67相关的知识,希望对你有一定的参考价值。

// string 转 数字很简单,-‘0’就行,数字转string 要用to_string(),是个比较好的函数,网上用的sprintf之类的都丑哭了。
class
Solution { public: string addBinary(string a, string b) { int lena = a.size(); int lenb = b.size(); int i = lena-1; int j = lenb-1; int jinwei = 0; string res = ""; while(i >= 0||j >= 0){ int ga = 0,gb = 0; if(i < 0)ga = 0; else{ ga = a[i] - 0; } if(j < 0)gb = 0; else{ gb = b[j] - 0; } int t = (jinwei+ga+gb)%2; jinwei = (jinwei+ga+gb)/2; res = to_string(t) + res; i--;j--; } if(jinwei == 1) res = "1" + res; return res; } };

 


以上是关于Leetcode 67的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode67-二进制求和(很长的水题)

Leetcode67. 二进制求和(简单模拟)

leetcode67. Add Binary

LeetCode(剑指 Offer)- 67. 把字符串转换成整数

LeetCode(剑指 Offer)- 67. 把字符串转换成整数

leetcode算法67.二进制求和