在这个程序中,我们需要给定二进制数并进行相加。有n个二进制数,我们需要将它们全部相加,得到一个二进制数作为输出。
为此,我们将使用二进制加法逻辑,逐个将1到N的所有项相加以获得结果。
Input: "1011", "10", "1001" Output: 10110
更简单的方法是将二进制字符串转换为其十进制等值,然后将它们相加并再次转换为二进制。这里我们将手动进行添加。 我们将使用一个辅助函数来添加两个二进制字符串。该函数将针对 n 个不同的二进制字符串使用 n-1 次。
#include<iostream> using namespace std; string add(string b1, string b2) { string res = ""; int s = 0; int i = b1.length() - 1, j = b2.length() - 1; while (i >= 0 || j >= 0 || s == 1) { if(i >= 0) { s += b1[i] - '0'; } else { s += 0; } if(j >= 0) { s += b2[j] - '0'; } else { s += 0; } res = char(s % 2 + '0') + res; s /= 2; i--; j--; } return res; } string addbinary(string a[], int n) { string res = ""; for (int i = 0; i < n; i++) { res = add(res, a[i]); } return res; } int main() { string arr[] = { "1011", "10", "1001" }; int n = sizeof(arr) / sizeof(arr[0]); cout << addbinary(arr, n) << endl; }
以上是添加 n 个二进制字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!