博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2. Add Two Numbers
阅读量:5218 次
发布时间:2019-06-14

本文共 1495 字,大约阅读时间需要 4 分钟。

题目:

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.

You may assume the two numbers do not contain any leading zero, except the number 0 itself.

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)

Output: 7 -> 0 -> 8

 

复杂度:

时间:O(n+m)、空间:O(1)

 

实现:

/** * Definition for singly-linked list. * public class ListNode { *     int val; *     ListNode next; *     ListNode(int x) { val = x; } * } */public class Solution {    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {        ListNode headNode = null, preNode = null;        int carry = 0;        while(l1 != null || l2 != null || carry > 0) {            int sum = (l1 != null ? l1.val : 0) + (l2 != null ? l2.val : 0) + carry;            carry = sum / 10;                        ListNode curNode = new ListNode(sum % 10);            if(preNode == null) {                headNode = curNode;            } else {                preNode.next = curNode;            }            preNode  = curNode;                        if(l1 != null && l1.next != null) {                l1 = l1.next;            } else {                l1 = null;            }                        if(l2 != null && l2.next != null) {                l2 = l2.next;            } else {                l2 = null;            }        }                return headNode;    }}

转载于:https://www.cnblogs.com/YaungOu/p/6718714.html

你可能感兴趣的文章
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
对于 yii2 高级模板 生成文件入口
查看>>
C语言math.h库函数中atan与atan2的区别
查看>>
Bresenham算法
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
Java使用FileReader(file)、readLine()读取文件,以行为单位,一次读一行,一直读到null时结束,每读一行都显示行号。...
查看>>
Elipse安装Spring Tool Suite
查看>>
Android Studio3.0 Error:Execution failed for task ':app:javaPreCompileDebug' 错误
查看>>
Tiles入门和Tiles 框架和体系结构
查看>>
URL地址下载图片到本地
查看>>
ATM作业
查看>>
redis maxmemory设置
查看>>
mysql 密码过期问题 password_expired
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
使用swagger作为restful api的doc文档生成
查看>>