acwing1451. 单链表快速排序
leetcode147. 对链表进行插入排序
leetcode143. 重排链表
class Solution {public: void reorderList(ListNode* head) { if(!head)return ; vector<ListNode*>v; ListNode*cur=head;
leetcode141. 环形链表
leetcode138. 复制带随机指针的链表
leetcode142. 环形链表 II
哈希/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * };