汇总链表的题目
1 | # Definition for singly-linked list. |
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.
一开始想的简单了 因为是 easy 类型的 还以为就是简单的合并一下(等长,不按顺序)
要求也没说清楚啊 ╭(╯^╰)╮
1 | class ListNode: |
Test
1 | s = Solution |
24. Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head. You may not modify the values in the list’s nodes, only nodes itself may be changed.
思路:两个节点为一个单位做处理,循环每次交换两个相邻节点
在每一次循环时,先取出 head.next
赋给一个临时变量 temp
, 然后用 head.next = temp.next
扔掉 head
中的 next
, 再令 temp.next = head
完成交换节点的目的
1 |
|
Test
1 | l2 = l1 = ListNode(1) |
61. Rotate List
Given a linked list, rotate the list to the right by k places, where k is non-negative.
先获取长度,再把链表结成一个环,最后把指针指向那个点的前一个
1 |
|
86. Partition List
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.
1 | class Solution: |
141. Linked List Cycle
Given a linked list, determine if it has a cycle in it.
To represent a cycle in the given linked list, we use an integer
pos
which represents the position (0-indexed) in the linked list where tail connects to. Ifpos
is-1
, then there is no cycle in the linked list.
拿到这个题的第一想法就是通过某个类似 list 的结构记住链表对象,然后每次循环都去比对,自然想到用 hash 表。然后运行时间
Runtime: 1144 ms, faster than 5.08% of Python online submissions for Linked List Cycle.
有点长,复杂度应该是 O(n)。
第二个办法是找两只小狗,让他们以不同的速度跑,如果跑道是圆的,两只小狗就一定会再相遇的ヾ(◍°∇°◍)ノ゙
这个方法的好处在于空间复杂度小点,因为不用存那么多东西。
方法一
1 | class Solution(object): |
方法二
1 | class Solution(object): |
143. Reorder List
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You may not modify the values in the list’s nodes, only nodes itself may be changed.
思路应该是先用快慢指针找到指针的中点,然后把后半个指针翻转过来,最后合并两个指针,每一步都是 知识点 ⊂[┐’_’┌]⊃
合并思路是:
- 先把 A 的下一位保存,然后指向 B,指针下移一位
- 当前指针的下一位指向上一步保存的位置
- 指针下移一位,链表二指针也下移一位
1 | class Solution: |
160. Intersection of Two Linked Lists
Write a program to find the node at which the intersection of two singly linked lists begins.
1 | class Solution(object): |
206. Reverse Linked List
Reverse a singly linked list.
- 保存当前头结点的下个节点。
- 将当前头结点的下一个节点指向“上一个节点”,这一步是实现了反转。
- 将当前头结点设置为“上一个节点”。
- 将保存的下一个节点设置为头结点。
做这种题总感觉赋来赋去的乱的很,,
1 | class Solution: |
328. Odd Even Linked List
Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes.
- 先初始化两个小狗并保存,它们的
next
分别指向head
和head.next
,然后让小狗各自站到自己的next
上(此时两只小狗是错位的) - 检查
even
小狗是不是None
,是的话就赋给head
结束循环,不是的话就让head
指针向后两步(开始检查循环) - 循环结束之后,令
odd
小狗的next
指向初始化时保存的even
小狗的next
- 返回
even
小狗的备份的next
1 | class Solution: |
817. Linked List Components
Return the number of connected components in G, where two values are connected if they appear consecutively in the linked list.
利用集合的思路来做:判断当前的值在不在 G 中,如果在则判断下一位是不是 不在 或者是 结尾,是的话计数器加一,若当前的值不在则后羿一位继续判断。
1 | class Solution: |
876. Middle of the Linked List
Given a non-empty, singly linked list with head node head, return a middle node of linked list. If there are two middle nodes, return the second middle node.
两种思路,第二种实现仅仅需要五行。最近做题发现,很多时候解决一个问题,思路真的很重要。很多时候自己那些想法是需要被推翻和颠覆的。
第二种方法的思路是同时跑两个小狗,一个一次跑一步,另一个跑两步,关键在于设置停止的条件:当跑得快的小狗首先跑到结尾时有两种情况,一种是自己站在 None
处,另一种是它的下一步 next
指向了 None
。这两个条件的任何一个出现时,就去把跑得慢的小狗的位置返回去 -=≡Σ(((つ•̀ω•́)つ…
方法1
1 | class Solution: |
方法2
1 | class Solution: |
Test
1 | s = Solution |