LeetCode: Add Two Numbers 解题报告

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

https://oj.leetcode.com/problems/add-two-numbers/

解答:

比较简单,直接用2个指针往后移动,并且将2个list的值相加,并且计算上carry值。注意,在while循环中加上carry == 1的判断,这样可以自动在链尾加上carry 的值。

 1 package Algorithms.list;
 2
 3 import Algorithms.algorithm.others.ListNode;
 4
 5 /**
 6  * Definition for singly-linked list.
 7  * public class ListNode {
 8  *     int val;
 9  *     ListNode next;
10  *     ListNode(int x) {
11  *         val = x;
12  *         next = null;
13  *     }
14  * }
15  */
16 public class AddTwoNumbers {
17     public static void main(String[] str) {
18         ListNode n1 = new ListNode(9);
19
20         ListNode l1 = new ListNode(1);
21         ListNode l2 = new ListNode(9);
22         ListNode l3 = new ListNode(9);
23         ListNode l4 = new ListNode(9);
24         ListNode l5 = new ListNode(9);
25         ListNode l6 = new ListNode(9);
26         ListNode l7 = new ListNode(9);
27         ListNode l8 = new ListNode(9);
28         ListNode l9 = new ListNode(9);
29         ListNode l10 = new ListNode(9);
30
31         l1.next = l2;
32         l2.next = l3;
33         l3.next = l4;
34         l4.next = l5;
35         l5.next = l6;
36         l6.next = l7;
37         l7.next = l8;
38         l8.next = l9;
39         l9.next = l10;
40
41         System.out.println(addTwoNumbers(n1, l1).toString());
42     }
43
44     public static ListNode addTwoNumbers(ListNode l1, ListNode l2) {
45         if (l1 == null || l2 == null) {
46             return null;
47         }
48
49         ListNode dummy = new ListNode(0);
50         ListNode tail = dummy;
51         int carry = 0;
52
53         while (l1 != null || l2 != null || carry == 1) {
54             int sum = carry;
55             if (l1 != null) {
56                 sum += l1.val;
57                 l1 = l1.next;
58             }
59
60             if (l2 != null) {
61                 sum += l2.val;
62                 l2 = l2.next;
63             }
64
65             carry = sum / 10;
66
67             // create a new node and add it to the tail.
68             ListNode cur = new ListNode(sum % 10);
69             tail.next = cur;
70             tail = tail.next;
71         }
72
73         return dummy.next;
74     }
75 }

代码:

AddTwoNumbers

时间: 2024-10-06 20:35:36

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

【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 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 ->