首页 > 代码库 > [leetcode]_Add Two Numbers
[leetcode]_Add Two Numbers
题目:两个链表存储数字,然后求和,和值存储在一个链表中。
代码:
1 public ListNode addTwoNumbers(ListNode l1, ListNode l2) { 2 ListNode head = new ListNode(0); 3 ListNode result = head; 4 5 int carry = 0 , tempSum = 0; 6 while(l1 != null || l2 != null){ 7 int v1 , v2; 8 v1 = (l1 != null) ? l1.val : 0; 9 v2 = (l2 != null) ? l2.val : 0; 10 tempSum = v1 + v2 + carry; 11 carry = tempSum / 10; 12 tempSum = tempSum % 10; 13 head.next = new ListNode(tempSum); 14 head = head.next; 15 16 l1 = (l1 != null) ? l1.next : null; 17 l2 = (l2 != null) ? l2.next : null; 18 } 19 20 if(carry > 0) head.next = new ListNode(carry); 21 22 return result.next; 23 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。