摘要: 题目:Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.思路:第一次相遇时slow走过的距离:a+b,fast走过的距离:a+b+c+b。因为fast的速度是sl... 阅读全文
posted @ 2016-01-25 11:08 很好玩 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 题目:Given a linked list, determine if it has a cycle in it.思路:对于判断链表是否有环,方法很简单,用两个指针,一开始都指向头结点,一个是快指针,一次走两步,一个是慢指针,一次只走一步,当两个指针重合时表示存在环了。fast先进入环,在slow... 阅读全文
posted @ 2016-01-25 10:47 很好玩 阅读(301) 评论(0) 推荐(0) 编辑