2. Add Two Numbers
You are given two linked lists representing two non-negative numbers. 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.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
暴力解法:
解题思路:
1.其中一个链表为空的情况;
2.链表长度相同时,且最后一个节点相加有进位的情况;
3.链表长度不等,短链表最后一位有进位的情况,且进位后长链表也有进位的情况;
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
if(l1==null){
return l2;
}
if(l2==null){
return l1;
}
int len1 = getLength(l1);
int len2 = getLength(l2);
ListNode head = null;
ListNode plus = null;
if(len1>=len2){
head = l1;
plus = l2;
}else{
head = l2;
plus = l1;
}
ListNode p = head;
int carry = 0;
int sum = 0;
while(plus!=null){
sum = p.val + plus.val+carry;
carry = sum/10;
p.val = sum%10;
if(p.next==null&&carry!=0){
ListNode node = new ListNode(carry);
p.next = node;
carry = 0;
}
p = p.next;
plus = plus.next;
}
while(p!=null&&carry!=0){
sum = p.val+carry;
carry = sum/10;
p.val = sum%10;
if(p.next==null&&carry!=0){
ListNode node = new ListNode(carry);
p.next = node;
carry=0;
}
p = p.next;
}
return head;
} public int getLength(ListNode l){
if(l==null){
return 0;
}
int len = 0;
while(l!=null){
++len;
l = l.next;
}
return len;
}
}
递归解法:
复杂度
时间O(n) 空间(n) 递归栈空间
思路
从末尾到首位,对每一位对齐相加即可。技巧在于如何处理不同长度的数字,以及进位和最高位的判断。这里对于不同长度的数字,我们通过将较短的数字补0来保证每一位都能相加。递归写法的思路比较直接,即判断该轮递归中两个ListNode是否为null。
- 全部为null时,返回进位值
- 有一个为null时,返回不为null的那个ListNode和进位相加的值
- 都不为null时,返回 两个ListNode和进位相加的值
public class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
return helper(l1,l2,0);
} public ListNode helper(ListNode l1, ListNode l2, int carry){
if(l1==null && l2==null){
return carry == 0? null : new ListNode(carry);
}
if(l1==null && l2!=null){
l1 = new ListNode(0);
}
if(l2==null && l1!=null){
l2 = new ListNode(0);
}
int sum = l1.val + l2.val + carry;
ListNode curr = new ListNode(sum % 10);
curr.next = helper(l1.next, l2.next, sum / 10);
return curr;
}
}
迭代法:
复杂度
时间O(n) 空间(1)
思路
迭代写法相比之下更为晦涩,因为需要处理的分支较多,边界条件的组合比较复杂。过程同样是对齐相加,不足位补0。迭代终止条件是两个ListNode都为null。
注意
- 迭代方法操作链表的时候要记得手动更新链表的指针到next
- 迭代方法操作链表时可以使用一个dummy的头指针简化操作
- 不可以在其中一个链表结束后直接将另一个链表串接至结果中,因为可能产生连锁进位
public class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode dummyHead = new ListNode(0);
if(l1 == null && l2 == null){
return dummyHead;
}
int sum = 0, carry = 0;
ListNode curr = dummyHead;
while(l1!=null || l2!=null){
int num1 = l1 == null? 0 : l1.val;
int num2 = l2 == null? 0 : l2.val;
sum = num1 + num2 + carry;
curr.next = new ListNode(sum % 10);
curr = curr.next;
carry = sum / 10;
l1 = l1 == null? null : l1.next;
l2 = l2 == null? null : l2.next;
}
if(carry!=0){
curr.next = new ListNode(carry);
}
return dummyHead.next;
}
}
21. Merge Two Sorted Lists
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
思路1:1)考虑特殊情况,两个链表至少有一个为空;
2)考虑两个链表长度不一样的情况;
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) { if(l1==null)
return l2;
if(l2==null)
return l1; ListNode head;
if(l1.val<=l2.val){
head = new ListNode(l1.val);
l1 = l1.next;
}else{
head = new ListNode(l2.val);
l2 = l2.next;
}
ListNode node = head;
while(l1!=null&&l2!=null){
if(l1.val<=l2.val){
node.next = l1;
node = node.next;
l1 = l1.next;
}else{
node.next = l2;
node = node.next;
l2 = l2.next;
}
}
if(l1!=null){
node.next = l1;
}
if(l2!=null){
node.next = l2;
}
return head;
}
}
206. Reverse Linked List
Reverse a singly linked list.
思路:1)首先判断头节点是否为空,为空则直接返回;
2)
public class Solution {
public ListNode reverseList(ListNode head) {
if(head==null)
return null;
ListNode newHead = new ListNode(head.val);
ListNode p = head.next;
while(p!=null){
ListNode node = new ListNode(p.val);
node.next = newHead;
p = p.next;
newHead = node;
} return newHead;
}
}
Sort a linked list in O(n log n) time using constant space complexity.
思路:要求时间复杂度为O(nlogn),空间复杂度为O(1);
1.考虑使用归并排序;
2.归并排序需要找到中点,考虑使用快慢指针;
3.归并中排序;
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode sortList(ListNode head) {
if(head==null||head.next==null)
return head;
ListNode mid = getMid(head);
ListNode right = sortList(mid.next);
mid.next = null;
ListNode left = sortList(head);
return mergeList(left,right);
}
public ListNode getMid(ListNode head){
ListNode slow = head;
ListNode fast = head.next;
while(fast!=null&&fast.next!=null){
slow = slow.next;
fast = fast.next.next;
}
return slow;
} public ListNode mergeList(ListNode left,ListNode right){
if(left==null)
return right;
if(right==null)
return left;
ListNode head = null;
if(left.val<=right.val){
head = left;
left = left.next;
}else{
head = right;
right = right.next;
}
ListNode node = head;
while(left!=null&&right!=null){
if(left.val<=right.val){
node.next = left;
left = left.next;
}else{
node.next = right;
right = right.next;
}
node = node.next;
}
if(left!=null){
node.next = left;
}
if(right!=null){
node.next = right;
}
return head;
}
}
Sort a linked list using insertion sort.
使用插入的方式对链表进行排序:
插入排序的思路如下:当前数与其前面的有序数依次进行比较,找到适当的位置插入,以此类推,得到最终结果;
此题的思路是:
1)如果head为空或者head.next为空,则直接返回head;
2)使用一个节点cur遍历当前待排序的节点,利用另一个节点pre从头开始遍历,若pre的值<=cur的值且两者不同,pre=pre.next;否则,记录第一个>cur的节点及其值,再遍历此节点到cur节点,调整节点值得位置,将cur的值交换到第一个>cur的节点处,直到链表遍历完;
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode insertionSortList(ListNode head) {
if(head==null||head.next==null){
return head;
}
ListNode cur = head;
while(cur!=null){
ListNode pre = head;
while(pre.val<=cur.val&&pre!=cur){
pre = pre.next;
}
int firstVal = pre.val;
ListNode mark = pre;
while(pre!=cur){
int nextVal = pre.next.val;
int tmp = nextVal;
pre.next.val = firstVal;
firstVal = tmp;
pre = pre.next;
}
mark.val = firstVal;
cur = cur.next;
}
return head;
}
}
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You must do this in-place without altering the nodes' values.
For example,
Given{1,2,3,4}, reorder it to{1,4,2,3}.
解题思路:
先使用快慢指针找到链表的中点,反转后半部分的链表,再以中点为断点进行前后两部分交叉合并;
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public void reorderList(ListNode head) {
if(head==null||head.next==null)
return;
ListNode fast = head.next;
ListNode slow = head;
while(fast!=null&&fast.next!=null){
slow = slow.next;
fast = fast.next.next;
}
ListNode pre = reverseList(slow.next);
slow.next = pre;
ListNode p = head;
ListNode q = slow.next;
while(q!=null&&p!=null){
slow.next = q.next;
q.next = p.next;
p.next = q;
p = q.next;
q = slow.next;
}
}
//反转单链表
public ListNode reverseList(ListNode head){
if(head==null||head.next==null)
return head;
ListNode cur = head.next;
ListNode pre = head;
while(cur!=null){
ListNode node = cur.next;
cur.next = pre;
pre = cur;
cur = node;
}
head.next = cur;
return pre;
}
}
LeetCode之链表的更多相关文章
-
Leetcode解题-链表(2.2.0)基础类
1 基类的作用 在开始练习LeetCode链表部分的习题之前,首先创建好一个Solution基类,其作用就是: Ø 规定好每个子Solution都要实现纯虚函数test做测试: Ø 提供了List ...
-
LeetCode 单链表专题 (一)
目录 LeetCode 单链表专题 <c++> \([2]\) Add Two Numbers \([92]\) Reverse Linked List II \([86]\) Parti ...
-
【算法题 14 LeetCode 147 链表的插入排序】
算法题 14 LeetCode 147 链表的插入排序: 解题代码: # Definition for singly-linked list. # class ListNode(object): # ...
-
关于leetcode中链表中两数据相加的程序说明
* Definition for singly-linked list. * struct ListNode { * int val; * struct ListNode *next; * }; */ ...
-
LeetCode之“链表”:Reverse Linked List &;&; Reverse Linked List II
1. Reverse Linked List 题目链接 题目要求: Reverse a singly linked list. Hint: A linked list can be reversed ...
-
关于LeetCode上链表题目的一些trick
最近在刷leetcode上关于链表的一些高频题,在写代码的过程中总结了链表的一些解题技巧和常见题型. 结点的删除 指定链表中的某个结点,将其从链表中删除. 由于在链表中删除某个结点需要找到该结点的前一 ...
-
Leetcode中单链表题总结
以下是个人对所做过的LeetCode题中有关链表类型题的总结,博主小白啊,若有错误的地方,请留言指出,谢谢. 一.有关反转链表 反转链表是在单链表题中占很大的比例,有时候,会以各种形式出现在题中,是比 ...
-
LeetCode之链表总结
链表提供了高效的节点重排能力,以及顺序性的节点访问方式,并且可以通过增删节点来灵活地调整链表的长度.作为一种常用的数据结构,链表内置在很多高级编程语言里面.既比数组复杂又比树简单,所以链表经常被面试官 ...
-
leetcode 876. 链表的中间结点 签到
题目: 给定一个带有头结点 head 的非空单链表,返回链表的中间结点. 如果有两个中间结点,则返回第二个中间结点. 示例 1: 输入:[1,2,3,4,5] 输出:此列表中的结点 3 (序列化形式: ...
-
leetcode 反转链表部分节点
反转从位置 m 到 n 的链表.请使用一趟扫描完成反转. 说明:1 ≤ m ≤ n ≤ 链表长度. 示例: 输入: 1->2->3->4->5->NULL, m = 2, ...
随机推荐
-
Hadoop学习笔记:MapReduce框架详解
开始聊mapreduce,mapreduce是hadoop的计算框架,我学hadoop是从hive开始入手,再到hdfs,当我学习hdfs时候,就感觉到hdfs和mapreduce关系的紧密.这个可能 ...
-
[CareerCup] 5.4 Explain Expression ((n &; (n-1)) == 0) 解释表达式
5.4 Explain what the following code does: ((n & (n-1)) == 0). 这道题让我们解释一个表达式((n & (n-1)) == 0 ...
-
试用windows Azure
试用windows Azure, 需要国外手机注册,信用卡注册. windows操作系统,只有2008R2,2012,2012R2可以选择,我选择XS最低档,然后选2012R2,欧洲数据中心,那个慢啊 ...
-
struts2,实现Ajax异步通信
用例需要依赖的jar: struts2-core.jar struts2-convention-plugin.jar,非必须 org.codehaus.jackson.jar,提供json支持 用例代 ...
-
手机抓包 http tcp udp?
1.电脑做wifi热点,手机连上后电脑上使用wireshark抓包 该方法手机无须root,并且适用于各种有wifi功能的手机(IOS.android等).平板等.只要电脑的无线网卡具有无线承载功能, ...
-
VSTO之旅系列(四):创建Word解决方案
原文:VSTO之旅系列(四):创建Word解决方案 本专题概要 引言 Word对象模型 创建Word外接程序 小结 一.引言 在上一个专题中主要为大家介绍如何自定义我们的Excel 界面的,然而在这个 ...
-
frameset 与frame 设置的技巧
今天来写点不一样的.如下图: 实现的效果就是原生的类似于导航形式的frameset. frameset 注意: 包含frameset的网页应该只是作为框架而存在,所以不能有body标签. 这个标签可以 ...
-
mysql异常:Packet for query is too large (10240 >; 1024). You can change this value
出现这个问题的原因是:mysql的配置文件中 max_allowed_packet 设置过小,mysql根据配置文件会限制server接受的数据包大小. 还有人会说我操作的数据量明显没有超过这个值为啥 ...
-
[深度学习]理解RNN, GRU, LSTM 网络
Recurrent Neural Networks(RNN) 人类并不是每时每刻都从一片空白的大脑开始他们的思考.在你阅读这篇文章时候,你都是基于自己已经拥有的对先前所见词的理解来推断当前词的真实含义 ...
-
module.exports和exports.md
推荐写法 具体解释可以往后看. 'use strict' let app = { // 注册全局对象 ... } ... // 封装工具箱 exports = module.exports = app ...