Leetcode – Linked List Cycle
Given a linked list, determine if it has a cycle in it. Analysis If we have 2 pointers – fast and slow. It is guaranteed that the fast one will meet the slow one if there exists a circle. The problem can be demonstrated in the following diagram: Java Solution public class Solution { public … Read more