File tree 3 files changed +47
-2
lines changed
3 files changed +47
-2
lines changed Original file line number Diff line number Diff line change @@ -271,4 +271,5 @@ captures/
271
271
* .DS_Store
272
272
273
273
.MWebMetaData /
274
- gradle.properties
274
+ gradle.properties
275
+ cmake-build-debug /
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class Solution {
30
30
ListNode *p2 = reverse (l2);
31
31
int carry = 0 ;
32
32
ListNode *head = nullptr ;
33
- while (( p1 || p2) ) {
33
+ while (p1 || p2 || carry > 0 ) {
34
34
int a = p1 ? p1->val : 0 ;
35
35
int b = p2 ? p2->val : 0 ;
36
36
int sum = a + b + carry;
Original file line number Diff line number Diff line change
1
+ //
2
+ // Created by DHL on 2022/4/29.
3
+ //
4
+
5
+ /* *
6
+ * Definition for singly-linked list.
7
+ * struct ListNode {
8
+ * int val;
9
+ * ListNode *next;
10
+ * ListNode() : val(0), next(nullptr) {}
11
+ * ListNode(int x) : val(x), next(nullptr) {}
12
+ * ListNode(int x, ListNode *next) : val(x), next(next) {}
13
+ * };
14
+ */
15
+ class Solution2 {
16
+ public:
17
+ ListNode *addTwoNumbers (ListNode *l1, ListNode *l2) {
18
+ stack<int > stack1, stack2;
19
+ while (l1) {
20
+ stack1.push (l1->val );
21
+ l1 = l1->next ;
22
+ }
23
+
24
+ while (l2) {
25
+ stack2.push (l2->val );
26
+ l2 = l2->next ;
27
+ }
28
+ int carry = 0 ;
29
+ ListNode *head = nullptr ;
30
+ while (!stack1.empty () || !stack2.empty () || carry > 0 ) {
31
+ int a = !stack1.empty () ? stack1.top () : 0 ;
32
+ int b = !stack2.empty () ? stack2.top () : 0 ;
33
+ int sum = a + b + carry;
34
+ carry = sum / 10 ;
35
+ ListNode *node = new ListNode (sum % 10 );
36
+ node->next = head;
37
+ head = node;
38
+ if (!stack1.empty ()) stack1.pop ();
39
+ if (!stack2.empty ()) stack2.pop ();
40
+ }
41
+ return head;
42
+ }
43
+
44
+ };
You can’t perform that action at this time.
0 commit comments