Skip to content

Commit 76fcb6b

Browse files
committed
feat: update leetcode solutions: No.0445. Add Two Numbers II
1 parent f26dea9 commit 76fcb6b

File tree

6 files changed

+150
-11
lines changed

6 files changed

+150
-11
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
### 链表
7676

7777
- [两数相加](/solution/0000-0099/0002.Add%20Two%20Numbers/README.md)
78+
- [两数相加 II](/solution/0400-0499/0445.Add%20Two%20Numbers%20II/README.md)
7879
- [从尾到头打印链表](/lcof/面试题06.%20从尾到头打印链表/README.md)
7980
- [删除链表的节点](/lcof/面试题18.%20删除链表的节点/README.md)
8081
- [删除排序链表中的重复元素](/solution/0000-0099/0083.Remove%20Duplicates%20from%20Sorted%20List/README.md)

README_EN.md

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Complete solutions to [LeetCode](https://leetcode-cn.com/problemset/all/), [LCOF
7474
### Linked List
7575

7676
- [Add Two Numbers](/solution/0000-0099/0002.Add%20Two%20Numbers/README_EN.md)
77+
- [Add Two Numbers II](/solution/0400-0499/0445.Add%20Two%20Numbers%20II/README_EN.md)
7778
- [Delete Node in a Linked List](/solution/0200-0299/0237.Delete%20Node%20in%20a%20Linked%20List/README_EN.md)
7879
- [Remove Duplicates from Sorted List](/solution/0000-0099/0083.Remove%20Duplicates%20from%20Sorted%20List/README_EN.md)
7980
- [Remove Duplicates from Sorted List II](/solution/0000-0099/0082.Remove%20Duplicates%20from%20Sorted%20List%20II/README_EN.md)

solution/0400-0499/0445.Add Two Numbers II/README.md

+57-2
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,77 @@
2626

2727
<!-- 这里可写通用的实现逻辑 -->
2828

29+
利用栈将数字逆序。
30+
2931
<!-- tabs:start -->
3032

3133
### **Python3**
3234

3335
<!-- 这里可写当前语言的特殊实现逻辑 -->
3436

3537
```python
36-
38+
# Definition for singly-linked list.
39+
# class ListNode:
40+
# def __init__(self, x):
41+
# self.val = x
42+
# self.next = None
43+
44+
class Solution:
45+
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
46+
s1, s2 = [], []
47+
while l1:
48+
s1.append(l1.val)
49+
l1 = l1.next
50+
while l2:
51+
s2.append(l2.val)
52+
l2 = l2.next
53+
carry, dummy = 0, ListNode(-1)
54+
while s1 or s2 or carry:
55+
carry += (0 if not s1 else s1.pop()) + (0 if not s2 else s2.pop())
56+
# 创建结点,利用头插法将结点插入链表
57+
node = ListNode(carry % 10)
58+
node.next = dummy.next
59+
dummy.next = node
60+
carry //= 10
61+
return dummy.next
3762
```
3863

3964
### **Java**
4065

4166
<!-- 这里可写当前语言的特殊实现逻辑 -->
4267

4368
```java
44-
69+
/**
70+
* Definition for singly-linked list.
71+
* public class ListNode {
72+
* int val;
73+
* ListNode next;
74+
* ListNode(int x) { val = x; }
75+
* }
76+
*/
77+
class Solution {
78+
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
79+
Deque<Integer> s1 = new ArrayDeque<>();
80+
Deque<Integer> s2 = new ArrayDeque<>();
81+
for (; l1 != null; l1 = l1.next) {
82+
s1.push(l1.val);
83+
}
84+
for (; l2 != null; l2 = l2.next) {
85+
s2.push(l2.val);
86+
}
87+
int carry = 0;
88+
ListNode dummy = new ListNode(-1);
89+
while (!s1.isEmpty() || !s2.isEmpty() || carry != 0) {
90+
carry += (s1.isEmpty() ? 0 : s1.pop()) + (s2.isEmpty() ? 0 : s2.pop());
91+
// 创建结点,利用头插法将结点插入链表
92+
ListNode node = new ListNode(carry % 10);
93+
node.next = dummy.next;
94+
dummy.next = node;
95+
carry /= 10;
96+
}
97+
return dummy.next;
98+
}
99+
}
45100
```
46101

47102
### **...**

solution/0400-0499/0445.Add Two Numbers II/README_EN.md

+53-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,64 @@ What if you cannot modify the input lists? In other words, reversing the lists i
3535
### **Python3**
3636

3737
```python
38-
38+
# Definition for singly-linked list.
39+
# class ListNode:
40+
# def __init__(self, x):
41+
# self.val = x
42+
# self.next = None
43+
44+
class Solution:
45+
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
46+
s1, s2 = [], []
47+
while l1:
48+
s1.append(l1.val)
49+
l1 = l1.next
50+
while l2:
51+
s2.append(l2.val)
52+
l2 = l2.next
53+
carry, dummy = 0, ListNode(-1)
54+
while s1 or s2 or carry:
55+
carry += (0 if not s1 else s1.pop()) + (0 if not s2 else s2.pop())
56+
node = ListNode(carry % 10)
57+
node.next = dummy.next
58+
dummy.next = node
59+
carry //= 10
60+
return dummy.next
3961
```
4062

4163
### **Java**
4264

4365
```java
44-
66+
/**
67+
* Definition for singly-linked list.
68+
* public class ListNode {
69+
* int val;
70+
* ListNode next;
71+
* ListNode(int x) { val = x; }
72+
* }
73+
*/
74+
class Solution {
75+
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
76+
Deque<Integer> s1 = new ArrayDeque<>();
77+
Deque<Integer> s2 = new ArrayDeque<>();
78+
for (; l1 != null; l1 = l1.next) {
79+
s1.push(l1.val);
80+
}
81+
for (; l2 != null; l2 = l2.next) {
82+
s2.push(l2.val);
83+
}
84+
int carry = 0;
85+
ListNode dummy = new ListNode(-1);
86+
while (!s1.isEmpty() || !s2.isEmpty() || carry != 0) {
87+
carry += (s1.isEmpty() ? 0 : s1.pop()) + (s2.isEmpty() ? 0 : s2.pop());
88+
ListNode node = new ListNode(carry % 10);
89+
node.next = dummy.next;
90+
dummy.next = node;
91+
carry /= 10;
92+
}
93+
return dummy.next;
94+
}
95+
}
4596
```
4697

4798
### **...**
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* public class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode(int x) { val = x; }
7+
* }
8+
*/
19
class Solution {
210
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
311
Deque<Integer> s1 = new ArrayDeque<>();
@@ -8,15 +16,15 @@ public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
816
for (; l2 != null; l2 = l2.next) {
917
s2.push(l2.val);
1018
}
11-
ListNode head = null;
1219
int carry = 0;
13-
while (!s1.isEmpty() || !s2.isEmpty() || carry > 0) {
20+
ListNode dummy = new ListNode(-1);
21+
while (!s1.isEmpty() || !s2.isEmpty() || carry != 0) {
1422
carry += (s1.isEmpty() ? 0 : s1.pop()) + (s2.isEmpty() ? 0 : s2.pop());
15-
ListNode h = new ListNode(carry % 10);
16-
h.next = head;
17-
head = h;
23+
ListNode node = new ListNode(carry % 10);
24+
node.next = dummy.next;
25+
dummy.next = node;
1826
carry /= 10;
1927
}
20-
return head;
28+
return dummy.next;
2129
}
22-
}
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Definition for singly-linked list.
2+
# class ListNode:
3+
# def __init__(self, x):
4+
# self.val = x
5+
# self.next = None
6+
7+
class Solution:
8+
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
9+
s1, s2 = [], []
10+
while l1:
11+
s1.append(l1.val)
12+
l1 = l1.next
13+
while l2:
14+
s2.append(l2.val)
15+
l2 = l2.next
16+
carry, dummy = 0, ListNode(-1)
17+
while s1 or s2 or carry:
18+
carry += (0 if not s1 else s1.pop()) + (0 if not s2 else s2.pop())
19+
node = ListNode(carry % 10)
20+
node.next = dummy.next
21+
dummy.next = node
22+
carry //= 10
23+
return dummy.next

0 commit comments

Comments
 (0)