
链表反转
文章平均质量分 78
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 143. Reorder List(重组链表)
原题网址:https://leetcode.com/problems/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 must do this in-place without altering the nodes' va原创 2016-05-26 02:08:26 · 1589 阅读 · 0 评论 -
LeetCode 206. Reverse Linked List(翻转链表)
原题网址:https://leetcode.com/problems/reverse-linked-list/Reverse a singly linked list.click to show more hints.Hint:A linked list can be reversed either iteratively or recursively. Could原创 2016-05-04 08:22:21 · 697 阅读 · 0 评论 -
LeetCode 92. Reverse Linked List II(翻转链表)
原题网址:https://leetcode.com/problems/reverse-linked-list-ii/Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,原创 2016-05-23 00:34:57 · 436 阅读 · 0 评论 -
LeetCode 25. Reverse Nodes in k-Group(反转链表)
原题网址:https://leetcode.com/problems/reverse-nodes-in-k-group/Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a m原创 2016-05-20 10:35:18 · 774 阅读 · 0 评论 -
LeetCode 445. Add Two Numbers II
原题网址:https://leetcode.com/problems/add-two-numbers-ii/You are given two linked lists representing two non-negative numbers. The most significant digit comes first and each of their nodes contain原创 2017-01-04 09:33:07 · 935 阅读 · 0 评论