
慢指针
文章平均质量分 61
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 141. Linked List Cycle(链表循环)
原题网址:https://leetcode.com/problems/linked-list-cycle/ Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space? 方法:使用两个指针。 /** * Defini原创 2016-05-27 00:22:22 · 484 阅读 · 0 评论 -
LeetCode 109. Convert Sorted List to Binary Search Tree(链表到二叉搜索树)
原题网址:https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/ Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. 方法:使用慢指针原创 2016-05-24 00:12:46 · 603 阅读 · 0 评论