题目部分:
解题思路:
方案一:
方案一演示代码讲解如下:
方案二演示代码讲解如下:
附:方案一、二代码提取:
// 头插方式
class Solution {
public:
string addStrings(string num1, string num2) {
int end1 = num1.size() - 1, end2 = num2.size() - 1;
int next = 0; // 进位
string retStr;
while (end1 >= 0 || end2 >= 0)
{
int x1 = 0;
if (end1 >= 0)
{
x1 = num1[end1] - '0';
--end1;
}
int x2 = 0;
if (end2 >= 0)
{
x2 = num2[end2] - '0';
--end2;
}
int retVal = x1 + x2 + next;
if (retVal > 9)
{
next = 1;
retVal -= 10;
}
else
{
next = 0;
}
// 头插
retStr.insert(retStr.begin(), retVal + '0');
}
if (next == 1)
{
retStr.insert(retStr.begin(), '1');
}
return retStr;
}
};
// 尾插方式
class Solution {
public:
string addStrings(string num1, string num2) {
int end1 = num1.size() - 1, end2 = num2.size() - 1;
int next = 0; // 进位
string retStr;
while (end1 >= 0 || end2 >= 0)
{
int x1 = 0;
if (end1 >= 0)
{
x1 = num1[end1] - '0';
--end1;
}
int x2 = 0;
if (end2 >= 0)
{
x2 = num2[end2] - '0';
--end2;
}
int retVal = x1 + x2 + next;
if (retVal > 9)
{
next = 1;
retVal -= 10;
}
else
{
next = 0;
}
// 头插
//retStr.insert(retStr.begin(), retVal + '0');
retStr += retVal + '0';
}
if (next == 1)
{
//retStr.insert(retStr.begin(), '1');
retStr += '1';
}
reverse(retStr.begin(), retStr.end());
return retStr;
}
};
测试结果:
方案一:
方案二:
不出意外的话家人们肯定是狠狠拿下!
备注:
楼主不才,不喜勿喷,若有错误或需要改进的地方,非常感谢你的指出,我会积极学习采纳。谢谢家人们一直以来的支持和鼓励,我会继续努力再接再励创作出更多优质的文章来回报家人们的。编程爱好的xdm,若有编程学习方面的问题可以私信我一同探讨(我尽力帮),毕竟“众人拾柴火焰高”,大家一起交流学习,共同进步!
2023年4月20日