Leetcode 题解 - 数学-字符串加法减法(2):字符串加法

本文解析了LeetCode上的一道题目,即两非负数字符串相加的实现方法。通过逐位相加并处理进位的方式,不使用内置大数库或直接转换为整数,提供了一种高效解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

[LeetCode] Add Strings 字符串相加

也是从高位开始的,

Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2.

Note:

  1. The length of both num1 and num2 is < 5100.
  2. Both num1 and num2 contains only digits 0-9.
  3. Both num1 and num2 does not contain any leading zero.
  4. You must not use any built-in BigInteger library or convert the inputs to integer directly.

 

这道题让我们求两个字符串的相加,之前LeetCode出过几道类似的题目,比如二进制数相加,还有链表相加,或是字符串加1,基本思路很类似,都是一位一位相加,然后算和算进位,最后根据进位情况看需不需要补一个高位,难度不大,参见代码如下:

class Solution {
    public String addStrings(String num1, String num2) {
        int m = num1.length()-1, n = num2.length()-1, c = 0;
        StringBuilder sb = new StringBuilder();
        while(c == 1 || m >=0 || n >= 0){
            //这里注意 用到了 字符间a's'cII码的差值 得到对应的整数值
            int x = m < 0 ? 0 : num1.charAt(m--) - '0';
            int y = n < 0 ? 0 : num2.charAt(n--) - '0';
            sb.append((x + y + c) % 10);
            c = (x + y + c) / 10;
        }
        return sb.reverse().toString();
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值