首页 > 编程语言 >LetCode算法--2.两数相加

LetCode算法--2.两数相加

时间:2022-08-28 14:11:21浏览次数:57  
标签:null ListNode val -- next int l2 LetCode 两数

给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 数字。

请你将两个数相加,并以相同形式返回一个表示和的链表。

你可以假设除了数字 0 之外,这两个数都不会以 0 开头。

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/add-two-numbers

写法一:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode listNode = new ListNode();
        ListNode carry = listNode;
        int x;
        int y;
        int arr = 0;


        while (l1 != null || l2 != null) {
            if (l1 != null) {
                x = l1.val;
            } else {
                x = 0;
            }
            if (l2 != null) {
                y = l2.val;
            } else {
                y = 0;
            }

            int sum = x + y + arr;

            carry.next = new ListNode(sum % 10);
            carry = carry.next;
            arr = sum/10;

            if(l1 != null) l1 =l1.next;
            if (l2 != null) l2 = l2.next;

            if (arr != 0){
                carry.next = new ListNode(arr);
            }
        }
        return listNode.next;
    }
}

写法二:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    
   public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode listNode = new ListNode();
        ListNode carry = listNode;
        int arr = 0;
        
        while (l1 != null || l2 != null){
            int x = l1 == null? 0: l1.val;
            int y = l2 == null? 0: l2.val;

            int sum = x + y + arr;
            carry.next = new ListNode(sum%10);
            carry = carry.next;
            arr = sum/10;
            
            if (l1 != null) l1 = l1.next;
            if (l2 != null) l2 = l2.next;
            
            if (arr != 0) carry.next = new ListNode(arr);
        }
        return listNode.next;
    }
}

写法三:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    
  public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode head = null, tail = null;
        int carry = 0;
        while (l1 != null || l2 != null){
            int x = l1 == null ? 0:l1.val;
            int y = l2 == null ? 0:l2.val;
            int sum = x + y + carry;

            if (head == null){
                head = tail = new ListNode(sum%10);
            }else {
                tail.next = new ListNode(sum%10);
                tail = tail.next;
            }
            carry = sum / 10;
            if (l1 != null) l1 = l1.next;
            if (l2 != null) l2 = l2.next;
        }
        if (carry != 0){
            tail.next = new ListNode(carry);
        }
        return head;
    }
}

 

标签:null,ListNode,val,--,next,int,l2,LetCode,两数
From: https://www.cnblogs.com/xinger123/p/16632690.html

相关文章

  • 231. 2 的幂
     labuladong题解思路难度简单532收藏分享切换为英文接收动态反馈给你一个整数 n,请你判断该整数是否是2的幂次方。如果是,返回 true ;否则,返回 false 。如......
  • 2-SAT
    $\text{k-SAT}$:有$n$个变量,$k$种取值;$m$个$\text{bool}$条件,每个条件至多涉及两个变量;求$n$个变量的一组取值,使得它满足这$m$个条件。当$k>2$的时候,这是一......
  • GoLand试用到期处理
    1、删除配置删除C:\Users\xlsa\AppData\Roaming\JetBrains\GoLand2021.2\eval\GoLand212.evaluation.key删除C:\Users\xlsa\AppData\Roaming\JetBrains\GoLand2021.......
  • 进程、线程补充与协程相关介绍
    补充点1.死锁当你知道锁的使用抢锁必须要释放锁,其实你在操作锁的时候也极其容易产生死锁现象(整个程序卡死阻塞)fromthreadingimportThread,Lockimporttimemu......
  • 使用小乌龟进行团队项目开发-05
    前面几节说了如何使用小乌龟的基本操作以及怎么在Gitee里创建私人仓库,那么同团队之间怎么进行协作开发的?这就要在Gitee上添加仓库成员,因为我们设置得仓库都是私有的,只有仓......
  • 191. 位1的个数
     labuladong题解思路难度简单506收藏分享切换为英文接收动态反馈编写一个函数,输入是一个无符号整数(以二进制串的形式),返回其二进制表达式中数字位数为'1'的个数......
  • 解决eclipse中的Java文件,使用idea打开的乱码问题
    吐槽:在克隆一些Github上面资源的时候,使用idea打开,会出现乱码的情况......
  • HTML5PLUS实现类似右侧弹出菜单
    一、实现效果使用【plus.webview】对象实现右侧弹出菜单栏:点击菜单图标弹出菜单列表,点击页面其它地方或点击【关闭菜单】收缩菜单。 二、源码index.html:<!DOCTYPE......
  • linux-grep管道命令
    grep命令文件过滤分割与合并grep(globalsearchregularexpression(RE)andprintouttheline,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正......
  • Spring 高级 工厂后处理器模拟实现-Mapper
    一、源方式自动注入packagecom.mangoubiubiu.show.a05;importcom.alibaba.druid.pool.DruidDataSource;importcom.mangoubiubiu.show.a05.component.Bean2;impor......