Given a linked list, determine if it has a cycle in it.
To represent a cycle in the given linked list, we use an integer pos which represents the position (0-indexed) in the linked list where tail connects to. If pos is -1, then there is no cycle in the linked list.
Example 1:
1 2 3
Input: head = [3,2,0,-4], pos = 1 Output: true Explanation: There is a cycle in the linked list, where tail connects to the second node.
Example 2:
1 2 3
Input: head = [1,2], pos = 0 Output: true Explanation: There is a cycle in the linked list, where tail connects to the first node.
Example 3:
1 2 3
Input: head = [1], pos = -1 Output: false Explanation: There is no cycle in the linked list.
Follow up:
Can you solve it using O(1) (i.e. constant) memory?
该题可以使用双指针方法进行解决,设定快指针 fast 和慢指针 slow,两指针同时从头节点 head 出发,慢指针每前进一个节点,快指针就前进两个节点,如果链表有环,由于两指针前进速度不同,最终两指针会汇聚在同一个节点,即 fast == slow,否则,快指针会最先到达链表节点,两指针不会汇聚在一起。