**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Linked List Cycle II (Find Entry)** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
Floyd's cycle detection + phase 2 pointer reset
**Edge Cases to Consider:**
- (1) No cycle
- (2) Cycle at head
- (3) Single node with self-loop