
循环链表
文章平均质量分 58
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 287. Find the Duplicate Number(找重复数字)
原题网址:https://leetcode.com/problems/find-the-duplicate-number/ Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate nu原创 2016-04-15 07:02:18 · 2994 阅读 · 1 评论 -
LeetCode 142. Linked List Cycle II(循环链表)
原题网址:https://leetcode.com/problems/linked-list-cycle-ii/ Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked list.原创 2016-05-26 03:07:42 · 1120 阅读 · 0 评论 -
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 评论