Skip to content
Programmingoneonone
Programmingoneonone
  • Home
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
Programmingoneonone

Leetcode Linked List Cycle II problem solution

YASH PAL, 31 July 2024

In this Leetcode Linked List Cycle II problem solution we have Given a linked list, return the node where the cycle begins. If there is no cycle, return null. There is a cycle in a linked list if some node in the list can be reached again by continuously following the next pointer. Internally, pos is used to denote the index of the node that the tail’s next pointer is connected to. Note that pos is not passed as a parameter. Notice that you should not modify the linked list.

Leetcode Linked List Cycle II problem solution

Problem solution in Python.

class Solution:
    def hasCycle(self, head: ListNode) -> bool:
        dict1 = dict()
        current = head
        while(current):
            if(current in dict1):
                return True
            dict1[current] = None
            current = current.next
        return False

Problem solution in Java.

public ListNode detectCycle(ListNode head) {
        ListNode fast = head;
        ListNode slow = head;
        do {
            if (fast == null || fast.next == null) {
                return null;
            }
            slow = slow.next;
            fast = fast.next.next;
        } while (fast != slow);
        
        slow = head;
        while (slow != fast) {
            slow = slow.next;
            fast = fast.next;
        }
        return slow;
    }

Problem solution in C++.

class Solution {
public:
    ListNode *detectCycle(ListNode *head) {
        ListNode *resultNode;
        ListNode *slow = head;
        ListNode *fast = head;
        
        if(head == nullptr){
            resultNode = nullptr;
        }
        
        while(fast !=nullptr && fast->next !=nullptr && slow !=nullptr){
            slow = slow->next;
            fast = fast->next->next;
            if(slow == fast){
                slow = head;
                while(slow != fast){
                    slow = slow->next;
                    fast = fast->next;
                }
                resultNode = slow;
                return resultNode;   
            }
        }
        
        resultNode = nullptr;
        return resultNode;
    }
};

Problem solution in C.

struct ListNode *detectCycle(struct ListNode *head) {

if (head == NULL || head->next == NULL) {
    return NULL;
}

struct ListNode* slow = head;
struct ListNode* fast = head;

while (fast != NULL && fast->next != NULL) {
    
    slow = slow->next;
    fast = fast->next->next;
    
    if (slow == fast) {
        break;
    } 
}

if (fast == NULL || fast->next == NULL) { 
    return NULL;
}

struct ListNode* p1 = head;
struct ListNode* p2 = slow;

while (p1 != p2) {
    p1 = p1->next;
    p2 = p2->next;
}

return p1;
}

coding problems solutions

Post navigation

Previous post
Next post

Pages

  • About US
  • Contact US
  • Privacy Policy

Programing Practice

  • C Programs
  • java Programs

HackerRank Solutions

  • C
  • C++
  • Java
  • Python
  • Algorithm

Other

  • Leetcode Solutions
  • Interview Preparation

Programming Tutorials

  • DSA
  • C

CS Subjects

  • Digital Communication
  • Human Values
  • Internet Of Things
  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2025 Programmingoneonone | WordPress Theme by SuperbThemes