标签:链表
Merge k sorted linked lists and return it as […]
Given a singly linked list, group all odd nodes togethe […]
Given a singly linked list, determine if it is a palind […]
Reverse a singly linked list. Example: Input: 1->2-& […]
Sort a linked list in O(n log n) time us […]
A linked list is given such that each node contains an […]
Given a linked list, reverse the nodes of a linked list […]
Write a program to find the node at which the intersect […]
Given a linked list, return the node where the cycle be […]
Given a linked list, determine if it has a cycle in it. […]
Remove all elements from a linked list of integers that […]
最近在复习链表的常用操作,顺便整理到博客中方便以后复习。 1.链表定义 对于单向链表来说,包括数据域和指针域, […]
题目描述: 给定一个带有头节点的单链表,输出逆序反转后的链表 分析:链表的转置是一个很常见、很基础的数据结构题 […]