摘要:我们的目的是求出两个数字的加和,并以同样的形式返回。假设每个都不会存在在首位的,除非数字本身就是想法这道题主要要求还是熟悉的操作。这道题由于数字反序,所以实际上从首位开始相加正好符合我们笔算的时候的顺序。
题目详情
You are given two non-empty linked lists representing two non-negative integers. 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.想法
You may assume the two numbers do not contain any leading zero, except the number 0 itself.题目的意思是,输入两个ListNode l1和l2,每一个ListNode代表一个‘反序’数字。例如4->3->2代表的是234。我们的目的是求出两个数字的加和,并以同样的ListNode形式返回。假设每个listnode都不会存在在首位的0,除非数字本身就是0.
Example
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
Explanation: 342 + 465 = 807.
这道题主要要求还是熟悉ListNode的操作。
还有两个数字相加的问题都要考虑一个进位的问题。
这道题由于数字反序,所以实际上从首位开始相加正好符合我们笔算的时候的顺序。
解法public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode p = l1; ListNode q = l2; ListNode head = new ListNode(0); ListNode curr = head; int sum =0; while(p != null || q != null){ sum = sum / 10; if(p != null){ sum += p.val; p = p.next; } if(q != null){ sum += q.val; q = q.next; } curr.next = new ListNode(sum % 10); curr = curr.next; } if(sum >= 10){ curr.next = new ListNode(1); } return head.next; }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/68541.html
摘要:这题是说给出两个链表每个链表代表一个多位整数个位在前比如代表着求这两个链表代表的整数之和同样以倒序的链表表示难度这个题目就是模拟人手算加法的过程需要记录进位每次把对应位置两个节点如果一个走到头了就只算其中一个的值加上进位值 Add Two Numbers You are given two linked lists representing two non-negative num...
摘要:描述中文解释给定两个非空的链表里面分别包含不等数量的正整数,每一个节点都包含一个正整数,肯能是,但是不会是这种情况。我们需要按照倒序计算他们的和然后再次倒序输出。 描述 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in rev...
摘要:题目要求对以链表形式的两个整数进行累加计算。思路一链表转置链表形式跟非链表形式的最大区别在于我们无法根据下标来访问对应下标的元素。因此这里通过先将链表转置,再从左往右对每一位求和来进行累加。通过栈可以实现先进后出,即读取顺序的转置。 题目要求 You are given two non-empty linked lists representing two non-negative i...
Problem You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contain a single digit. Add the two numbers and ...
摘要:给出两个非空的链表用来表示两个非负的整数。如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。需要考虑到两个链表长度不同时遍历方式链表遍历完成时最后一位是否需要进一位。 给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。 ...
阅读 3796·2021-10-08 10:12
阅读 4036·2021-09-02 15:40
阅读 896·2021-09-01 11:09
阅读 1584·2021-08-31 09:38
阅读 2525·2019-08-30 13:54
阅读 2232·2019-08-30 12:54
阅读 1213·2019-08-30 11:18
阅读 1372·2019-08-29 14:06