2. Add Two Numbers
2018-06-18 03:03:59来源:未知 阅读 ()
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.
Example
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) Output: 7 -> 0 -> 8 Explanation: 342 + 465 = 807.
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
// save result node
ListNode resNode = new ListNode(0);
// carry bit flag
boolean isCarryBit = false;
// position flag
boolean isFirstIndex = true;
// temp node
ListNode tempNode = resNode;
// iterator node
while(l1 != null || l2 != null) {
int val1 = l1 != null ? l1.val : 0;
int val2 = l2 != null ? l2.val : 0;
// sum digit
int sum = val1 + val2;
int currentVal = (sum + (isCarryBit ? 1 : 0)) % 10;
// crray bit handle
isCarryBit = ((sum + (isCarryBit ? 1 : 0)) >= 10 ? true : false);
if(isFirstIndex) {
resNode.val = currentVal;
} else {
tempNode.next = new ListNode(currentVal);
tempNode = tempNode.next;
}
isFirstIndex = false;
// evalution
if(l1 != null){
l1 = l1.next;
}
if(l2 != null){
l2 = l2.next;
}
}
// carry bit
if(isCarryBit){
tempNode.next = new ListNode(1);
}
// return result node
return resNode;
}
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Codewars Solution:Two to One 2020-05-21
- LinkedList源码(add方法) 2020-05-19
- List 重载添加-add,删除-remove方法,以及获取子集方法 2019-12-25
- 集合的操作 contains(),containsAll() ,addAll(),removeA 2019-12-24
- 端口占用问题:java.net.BindException: Address already in 2019-12-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash
