445. 两数相加 II

给定两个非空链表来代表两个非负整数。数字最高位位于链表开始位置。它们的每个节点只存储单个数字。将这两数相加会返回一个新的链表。

输入: (7 -> 2 -> 4 -> 3) + (5 -> 6 -> 4)
输出: 7 -> 8 -> 0 -> 7
 1 import java.util.Stack;
 2
 3 public class AddTwoNumbersII {
 4     public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
 5         Stack<ListNode> st1 = new Stack<>();
 6         Stack<ListNode> st2 = new Stack<>();
 7         ListNode temp1 = l1;
 8         ListNode temp2 = l2;
 9         while(temp1 != null) {
10             st1.push(temp1);
11             temp1 = temp1.next;
12         }
13         while(temp2 != null) {
14             st2.push(temp2);
15             temp2 = temp2.next;
16         }
17         int flag = 0;
18         ListNode res = new ListNode(-1);
19         ListNode result = res.next;
20         while(!st1.empty() && !st2.empty()) {
21             int sum = st1.pop().val + st2.pop().val + flag;
22             flag = 0;
23             if(sum > 9) {
24                 sum = sum % 10;
25                 flag = 1;
26             }
27             ListNode newHead = new ListNode(sum);
28             newHead.next = result;
29             result = newHead;
30         }
31         while(!st1.empty()) {
32             int sum = st1.pop().val + flag;
33             flag = 0;
34             if(sum > 9) {
35                 sum = sum % 10;
36                 flag = 1;
37             }
38             ListNode newHead = new ListNode(sum);
39             newHead.next = result;
40             result = newHead;
41         }
42         while(!st2.empty()) {
43             int sum = st2.pop().val + flag;
44             flag = 0;
45             if(sum > 9) {
46                 sum = sum % 10;
47                 flag = 1;
48             }
49             ListNode newHead = new ListNode(sum);
50             newHead.next = result;
51             result = newHead;
52         }
53         if(flag == 1) {
54             ListNode newHead = new ListNode(1);
55             newHead.next = result;
56             result = newHead;
57         }
58         return result;
59     }
60
61     class ListNode {
62         int val;
63         ListNode next;
64         ListNode(int x) { val = x; }
65     }
66 }

原文地址:https://www.cnblogs.com/xiyangchen/p/10946903.html

时间: 2024-11-08 20:17:52

445. 两数相加 II的相关文章

LeetCode 445. 两数相加 II(Add Two Numbers II)

445. 两数相加 II 445. Add Two Numbers II 题目描述 给定两个非空链表来代表两个非负整数.数字最高位位于链表开始位置.它们的每个节点只存储单个数字.将这两数相加会返回一个新的链表. 你可以假设除了数字 0 之外,这两个数字都不会以零开头. 进阶: 如果输入链表不能修改该如何处理?换句话说,你不能对列表中的节点进行翻转. LeetCode445. Add Two Numbers II中等 示例: 输入: (7 -> 2 -> 4 -> 3) + (5 ->

LeetCode 445 两数相加 II

链接:https://leetcode-cn.com/problems/add-two-numbers-ii 给定两个非空链表来代表两个非负整数.数字最高位位于链表开始位置.它们的每个节点只存储单个数字.将这两数相加会返回一个新的链表. 你可以假设除了数字 0 之外,这两个数字都不会以零开头. 进阶: 如果输入链表不能修改该如何处理?换句话说,你不能对列表中的节点进行翻转. 示例: 输入: (7 -> 2 -> 4 -> 3) + (5 -> 6 -> 4)输出: 7 -&g

LeetCode167 两数之和 II - 输入有序数组

给定一个已按照升序排列 的有序数组,找到两个数使得它们相加之和等于目标数. 函数应该返回这两个下标值 index1 和 index2,其中 index1 必须小于 index2. 说明: 返回的下标值(index1 和 index2)不是从零开始的. 你可以假设每个输入只对应唯一的答案,而且你不可以重复使用相同的元素. 示例: 输入: numbers = [2, 7, 11, 15], target = 9 输出: [1,2] 解释: 2 与 7 之和等于目标数 9 .因此 index1 = 1

Leetcode 454.四数相加II

四数相加II 给定四个包含整数的数组列表 A , B , C , D ,计算有多少个元组 (i, j, k, l) ,使得 A[i] + B[j] + C[k] + D[l] = 0. 为了使问题简单化,所有的 A, B, C, D 具有相同的长度 N,且 0 ≤ N ≤ 500 .所有整数的范围在 -228 到 228 - 1 之间,最终结果不会超过 231 - 1 . 例如: 输入: A = [ 1, 2] B = [-2,-1] C = [-1, 2] D = [ 0, 2] 输出: 2

[CareerCup] 18.1 Add Two Numbers 两数相加

18.1 Write a function that adds two numbers. You should not use + or any arithmetic operators. 这道题让我们实现两数相加,但是不能用加号或者其他什么数学运算符号,那么我们只能回归计算机运算的本质,位操作Bit Manipulation,我们在做加法运算的时候,每位相加之后可能会有进位Carry产生,然后在下一位计算时需要加上进位一起运算,那么我们能不能将两部分拆开呢,我们来看一个例子759+674 1.

程序猿之---C语言细节20(符号和有符号之间转换、两数相加溢出后数值计算)

主要内容:无符号和有符号之间转换.两数相加溢出后数值计算 #include <stdio.h> /* 这个函数存在潜在漏洞 */ float sum_elements(float a[], unsigned length) { int i; float result = 0; for(i = 0; i <= length - 1; i++) { result += a[i]; printf("a[%d] = %f \n",i,a[i]); } return resul

【LeetCode】- Two Sum(两数相加)

[ 问题: ] Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please no

程序员之---C语言细节20(符号和有符号之间转换、两数相加溢出后数值计算)

主要内容:无符号和有符号之间转换.两数相加溢出后数值计算 #include <stdio.h> /* 这个函数存在潜在漏洞 */ float sum_elements(float a[], unsigned length) { int i; float result = 0; for(i = 0; i <= length - 1; i++) { result += a[i]; printf("a[%d] = %f \n",i,a[i]); } return resul

leetcode 2. 两数相加

给定两个非空链表来表示两个非负整数.位数按照逆序方式存储,它们的每个节点只存储单个数字.将两数相加返回一个新的链表. 你可以假设除了数字 0 之外,这两个数字都不会以零开头. 示例: 输入:(2 -> 4 -> 3) + (5 -> 6 -> 4) 输出:7 -> 0 -> 8 原因:342 + 465 = 807 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val