【LeetCode】Add Two Numbers 解题报告

【题目】

You are given two linked lists representing two non-negative numbers. 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.

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

Output: 7 -> 0 -> 8

【说明】

这道题不难,思路很直观,考基本功。

遍历两个链表时必须的,需要注意的是最后一个结点如果有进位,需要new一个结点。

网上很多代码是重新new一个链表来存放结果,我觉得可以直接用 l1 来存放结果。

网上很多代码看起来更短,但时间复杂度并没有降低,为便于理解,我觉着还是下面写的比较清晰。

【Java代码】

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        if (l1 == null) return l2;
        if (l2 == null) return l1;

        //把相加后的结果存放于链表1,pre1是用于最后有进位时在其后new新结点
        ListNode ret = l1;
        ListNode pre1 = new ListNode(0);
        pre1.next = l1;

        int flag = 0;
        while (l1 != null && l2 != null) {
            l1.val = l1.val + l2.val + flag;
            flag = l1.val / 10;
            l1.val = l1.val % 10;
            pre1 = l1;
            l1 = l1.next;
            l2 = l2.next;
        }

        //如果链表2有剩余,接到链表1的后面
        if (l2 != null) {
            pre1.next = l2;
            l1 = l2;
        }

        while (l1 != null) {
            l1.val += flag;
            flag = l1.val / 10;
            l1.val = l1.val % 10;
            pre1 = l1;
            l1 = l1.next;
        }

        if (flag > 0) {
            ListNode node = new ListNode(1);
            pre1.next = node;
        }

        return ret;
    }
}
时间: 2024-07-30 17:30:40

【LeetCode】Add Two Numbers 解题报告的相关文章

LeetCode: Add Two Numbers 解题报告

Add Two NumbersYou are given two linked lists representing two non-negative numbers. 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. Input: (2 -> 4 -> 3) + (5

LeetCode 2. Add Two Numbers 解题报告

题意: 有两个链表,它们表示逆序的两个非负数.例 (2 -> 4 -> 3)表示342,求两个数字的和,并用同样的方式逆序输出.如342+465 = 807,你需要把结果表达为(7 ->0 ->8). 思路: 模拟一下加法的运算过程,从个位开始加,进位保存下来,十位运算的时候把个位的进位加上,依次类推. C++ Code /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNod

Add Two Numbers 解题报告

You are given two linked lists representing two non-negative numbers. 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. Input: (2 -> 4 -> 3) + (5 -> 6 ->

LeetCode: Pascal's Triangle 解题报告

Pascal's Triangle Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] SOLUTION 1:很easy的题.注意记得把List加到ret中.比较简单,每一行的每一个元素有这个规律:1. 左右2边的是1.i, j 表示行,列坐标.2.

【LeetCode】Insert Interval 解题报告

[题目] Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary). You may assume that the intervals were initially sorted according to their start times. Example 1: Given intervals [1,3],[6,9], insert and m

LeetCode: Add Two Numbers 题解

You are given two linked lists representing two non-negative numbers. 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. Input: (2 -> 4 -> 3) + (5 -> 6 ->

[LeetCode]Longest Valid Parentheses, 解题报告

题目 Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. For "(()", the longest valid parentheses substring is "()", which has length = 2. Another example i

LeetCode——Add Two Numbers

You are given two linked lists representing two non-negative numbers. 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. Input: (2 -> 4 -> 3) + (5 -> 6 ->

leetcode——Add Two Numbers 两个链表表示的正整数对其求和(AC)

You are given two linked lists representing two non-negative numbers. 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. Input: (2 -> 4 -> 3) + (5 -> 6 ->