-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddBinaryNumbers.cpp
More file actions
40 lines (33 loc) · 827 Bytes
/
addBinaryNumbers.cpp
File metadata and controls
40 lines (33 loc) · 827 Bytes
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
// C++ program to add two binary strings
#include<bits/stdc++.h>
using namespace std;
// This function adds two binary strings and return
// result as a third string
string addBinary(string a, string b)
{
string result = ""; // Initialize result
int s = 0; // Initialize digit sum
// Traverse both strings starting from last
// characters
int i = a.size() - 1, j = b.size() - 1;
while (i >= 0 || j >= 0 || s == 1)
{
// Comput sum of last digits and carry
s += ((i >= 0)? a[i] - '0': 0);
s += ((j >= 0)? b[j] - '0': 0);
// If current digit sum is 1 or 3, add 1 to result
result = char(s % 2 + '0') + result;
// Compute carry
s /= 2;
// Move to next digits
i--; j--;
}
return result;
}
// Driver program
int main()
{
string a = "1101", b="100";
cout << addBinary(a, b) << endl;
return 0;
}