题目名称
- Add Two Numbers(Leetcode #2)
- Reverse Linked ListⅡ(Leetcode #92)
- Partition List(Leetcode #86)
- Remove Duplicates from Sorted List(Leetcode #83)
- Rotate List(Leetcode #61)
- 正则表达式匹配(剑指offer #18)
- 表达数值的字符串(剑指offer #19)
- 调整数组顺序保证奇数在偶数之前(剑指offer #20)
- 链表的倒数第k个节点(剑指offer #21)
Add Two Numbers(Leetcode #2)
题目描述
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:1
2
3Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
Explanation: 342 + 465 = 807.
解题思路
从头到尾遍历即可,需要注意边界情况与鲁棒性。
解题方案
1 | /** |
扩展
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 return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Follow up:
What if you cannot modify the input lists? In other words, reversing the lists is not allowed.
Example:1
2Input: (7 -> 2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 8 -> 0 -> 7
解题思路
有大佬提出了不用额外空间也不破坏原有数组的做法,具体解答可见:https://leetcode.com/problems/add-two-numbers-ii/discuss/154058/C++-Solution-without-recursion-and-Space-complexity-O(1) 出于赶时间的原因(其实是没想出来),笔者用栈完成了这道题的求解(把这道题强行变成了上一道题),需要注意的地方在于返回的链表不可逆序连接。
解题方案
1 | class Solution { |
Reverse Linked ListⅡ(Leetcode #92)
题目描述
Reverse a linked list from position m to n. Do it in one-pass.
Note: 1 ≤ m ≤ n ≤ length of list.
Example:1
2Input: 1->2->3->4->5->NULL, m = 2, n = 4
Output: 1->4->3->2->5->NULL
解题思路
本题可以用模仿单链表翻转(迭代版本)的求解思路完成,也可以运用下一种思路:
假定当前有单链表1->2->3->4->5
,m=1,n=3;我们设立三个指针pre
,cur
,next
。最终我们需要做的是将2移动到4的位置,为了完成这一步骤需要m-n次循环,循环过程如下所示:1
2
3start: 1->2->3->4->5 pre:1 cur:2 next:3
1st: 1->3->2->4->5 pre:1 cur:2 next:4
2nd: 1->4->3->2->5 pre:1 cur:2 next:5
在每一次循环中,我们需要执行的是:
- cur->next = next->next;
- next->next = pre->next;
- pre->next = next;
- next = cur->next;
解题方案
1 | class Solution { |
Partition List(Leetcode #86)
题目描述
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of the nodes in each of the two partitions.
Example:1
2Input: head = 1->4->3->2->5->2, x = 3
Output: 1->2->2->4->3->5
解题思路
STL算法中有stable_partition与partition,前一种我没学过。不过单链表具有非常好的分割特性,不必那么麻烦。直接将原有链表分为两条,然后再合并即可。
解题方案
1 | class Solution { |
Remove Duplicates from Sorted List(Leetcode #83)
题目描述
Given a sorted linked list, delete all duplicates such that each element appear only once.
Example 1:1
2Input: 1->1->2->3->3
Output: 1->2->3
解题思路
单链表不具备随机访问特性,只能从头到尾地遍历一次。
解题方案
1 | class Solution { |
扩展
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.
Example:1
2Input: 1->1->1->2->3
Output: 2->3
解题思路
我们用prev
与cur
两个指针完成求解。将所有重复元素直接略过。
解题方案
1 | class Solution { |
Rotate List(Leetcode #61)
题目描述
Given a linked list, rotate the list to the right by k places, where k is non-negative.
Example:1
2Input: 1->2->3->4->5->NULL, k = 2
Output: 4->5->1->2->3->NULL
Explanation:1
2rotate 1 steps to the right: 5->1->2->3->4->NULL
rotate 2 steps to the right: 4->5->1->2->3->NULL
解题思路
STL有关于rotate的算法实现,但单链表自身存在特殊性质:我们可以把它连接成环,确定开头后再断开即可。
解题方案
1 | class Solution { |
正则表达式匹配(剑指offer #18)
题目描述
本题与leetcode#10 相同。是一道难度较大的题(我感觉字符串的题都好难啊)。
解题思路
如果第2个字符不为*,那么我们先判断首字符是否匹配。若首字符匹配,递归式判断剩下的,否则返回false。若第二个字符为*且当前首字符匹配,我们有两种选择:
- 无视模式串中的’*’
- 无视文本串中当前匹配的字符
若第二个字符为*且当前首字符不匹配,直接认为p[0]p[1]
为空,继续执行匹配。
解题方案
1 | class Solution { |
表达数值的字符串
解题思路
类似于JSON项目中解析数字的实现。
解题方案
1 | class Solution { |
调整数组顺序保证奇数在偶数之前(剑指offer #20)
解题思路
这道题就是在考察stable_partition的实现,简单地说,可以利用插排或者冒泡。如果不用稳定的话,那直接参照STL的partition实现。
解题方案
1 | class Solution { |
链表的倒数第k个节点
解题思路
快慢指针,不过需要注意鲁棒性。
解题方案
1 | class Solution { |