leetCode 67. Add Binary 字符串

简介:

67. Add Binary

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

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

思路:

1.将两个字符串按数组相加得到新数组。

2.将新数组转换成结果。

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
class  Solution {
public :
     string addBinary(string a, string b) {
         int  sizeA = a.size();
         int  sizeB = b.size();
         int  carry = 0;
         vector< int > result;
         string resultStr;
         if  (sizeA < sizeB)
             return  addBinary(b, a);
     
         for  ( int  i = 0; i < sizeB; i++)
         {
             int  cur = (a[sizeA - i - 1] -  '0' ) + (b[sizeB - i - 1] -  '0' ) + carry;
             if  (cur < 2)
             {
                 result.push_back(cur);
                 carry = 0;
             }
             else  if  (cur == 2)
             {
                 result.push_back(0);
                 carry = 1;
             }
             else  if  (cur == 3)
             {
                 result.push_back(1);
                 carry = 1;
             }
         }
     
         for  ( int  j = sizeB; j < sizeA; j++)
         {
             int  cur = (a[sizeA - j - 1] -  '0' ) + carry;
             if  (cur < 2)
             {
                 result.push_back((a[sizeA - j - 1] -  '0' ) + carry);
                 carry = 0;
             }
             else  if  (cur == 2)
             {
                 result.push_back(0);
                 carry = 1;
             }
             else  if  (cur == 3)
             {
                 result.push_back(1);
                 carry = 1;
             }
         }
     
         if  (carry == 2)
         {
             result.push_back(0);
             result.push_back(1);
         }
         else  if  ( carry == 1)
         {
             result.push_back(1);
         }
         
         for  ( int  k = 0; k < result.size(); k++)
         {
             if  (result[result.size() - 1 - k] == 1)
             {
                 resultStr.append(1,  '1' );
             }
             else
             {
                 resultStr.append(1,  '0' );
             }
         }
         return  resultStr;
     }
};


本文转自313119992 51CTO博客,原文链接:http://blog.51cto.com/qiaopeng688/1836715

相关文章
|
18天前
|
JavaScript
力扣3333.找到初始输入字符串Ⅱ
【10月更文挑战第9天】力扣3333.找到初始输入字符串Ⅱ
31 1
|
1月前
|
C++
Leetcode第43题(字符串相乘)
本篇介绍了一种用C++实现的字符串表示的非负整数相乘的方法,通过逆向编号字符串,将乘法运算转化为二维数组的累加过程,最后处理进位并转换为字符串结果,解决了两个大数相乘的问题。
24 9
|
1月前
|
算法 C++
Leetcode第八题(字符串转换整数(atoi))
这篇文章介绍了LeetCode上第8题“字符串转换整数(atoi)”的解题思路和C++的实现方法,包括处理前导空格、正负号、连续数字字符以及整数溢出的情况。
16 0
|
1月前
【LeetCode 22】459.重复的子字符串
【LeetCode 22】459.重复的子字符串
27 0
|
1月前
【LeetCode 20】151.反转字符串里的单词
【LeetCode 20】151.反转字符串里的单词
18 0
|
1月前
【LeetCode 19】541.反转字符串II
【LeetCode 19】541.反转字符串II
19 0
|
1月前
【LeetCode 18】6.2.反转字符串
【LeetCode 18】6.2.反转字符串
14 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
55 6
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
108 2