stringaddStrings(string num1, string num2){ //双指针,双指针的“指针”不一定非得是指针类型,能做flag标记就行 int i = num1.length() - 1; int j = num2.length() - 1; string res; int multi = 1; //进位 int add = 0; while (i >= 0 || j >= 0 || add > 0) { int x = 0; int y = 0; if (i >= 0) { //两者相减得到的是int型 x = num1[i] - '0'; } if (j >= 0) { y = num2[j] - '0'; } int result = x + y + add; res.push_back('0' + result % 10); add = result / 10; i--; j--; } //因为每次push_back是从低位到高位的,所以结果要翻转 reverse(res.begin(), res.end()); return res; }