Skip to content

Latest commit

 

History

History

detect_cycle

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

LISTCYCLE

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

Try solving it using constant additional space.

Example :

Input :

              ______
             |     |
             \/    |
    1 -> 2 -> 3 -> 4

Return the node corresponding to node 3.