来看下Leetcode中Tag为[ Linked-List ](https://leetcode.com/tag/linked-list/ )的题目[ 141. Linked List Cycle ](https://leetcode.com/problems/linked- list-cycle / description / ):判断一个链表是否存在环,Easy [ 142.链接列表循环II ](https://leetcode.com/problems/linked-list-cycle-ii/description/ ):求带环链表的入口结点,中等[ 83.从排序列表中删除重复](https://leetcode.com/problems/remove-duplicates-from-sorted-list/description/ ):从排序链表中删除重复的元素重复元素保留一个),Easy [82。从分类列表中删除重复项II](
https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/description/ ):从排序链表中删除重复的元素(重复元素一个也不留),Medium [ 237. Delete Node in链接列表](https://leetcode.com/problems/delete-node-in-a-linked-list/description/ ):从链表中删除一个结点,轻松 [ 203.删除链接列表元素](https ://leetcode.com/problems/remove-linked-list-elements/description/ ):从链表中删除一个元素,Easy [ 206.反向链接列表](https://leetcode.com/problems/reverse-linked -list / description / ):链表转置,Easy[92。反向链接列表II]( https://leetcode.com/problems/reverse-linked-list-ii/description/
):从m到n的位置转置,其他位置保持不变,Medium [ 21.合并两个排序列表](https ://leetcode.com/problems/merge-two-sorted-lists/description/ ):融合两个有序链表,Easy [ 23.合并k排序列表](https://leetcode.com/problems/merge-k-sorted-lists / description /):融合K个有序链表,Hard [2.添加两个数字](https://leetcode.com/problems/add-two-numbers/description/):求两链表的容易[445.添加两个数字II](https://leetcode.com/problems/add-two-numbers-ii/description/):要求不翻转链表,实现两链表的和,Medium [ 24 。交换节点在对](https://leetcode.com/problems/swap-nodes-in-pairs/description/ ):两两交换链表结点,中等[25。k组中的反向节点](https://leetcode.com/problems/reverse-nodes-in-k-group/description/):以k个结点为一组进行链表结点的交换,Hard [61 。[旋转列表](https://leetcode.com/problems/rotate-list/description/):向右向旋转数组K,Medium [19.从列表结束删除第N个节点](
https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/ ):删除倒数第n个结点,中等 [ 725.拆分链接列表中的部分](https://leetcode.com/problems/split-linked-list-in-parts/description/ ):将链表拆成K个链表,每个链表之间长度差不能超过1,中等 [ 86.分区列表](https://leetcode.com/problems/partition-list/description/ ):将链表整理成小于X->大于等于X的链表形式,保持原来的相对位置不变,中 [
- Convert Sorted List to Binary Search Tree](https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/description/):将链表改写成二叉平衡搜索树格式,Medium
143. Reorder List:将L1->L2->…->Ln-1-> Ln链表改写成L1->Ln->L2->Ln-1->…,Medium
[234. Palindrome Linked List](https://leetcode.com/problems/palindrome-linked-list/description/ ):判断一个链表是不是回文链表,Easy [ 138.用随机指针复制列表](https://leetcode.com/拷贝带有随机指针 /描述/ ):拷贝带有随机指针的链表,中 [ 147.插入排序列表](https://leetcode.com/problems/insertion-sort-list/description / ):使用直接插入排序将链表整理成有序链表,中 [ 148.排序列表](https://leetcode.com/problems/sort-list/description/ ):用常量空间和O(nlogn)来将链表整理成有序链表,中 [ 160.两个链接列表的交集](
https://leetcode.com/problems/intersection-of-two-linked-lists/description/ ):找出两个链表的公共结点,中 [ 328.奇数链表](https:// leetcode。 com / problems / odd-even-linked-list / description / ):将链表改写成奇结点+偶结点链表,中Github答案链接(Python) [ 链表解决方案](https://github.com/ tinkle1129 / Leetcode_Solution / tree / master / LinkedList )