LinkedList Remove Cycle
Medium
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Given a linked list. Remove a cycle in it. If there is no cycle, do nothing.
Definition of a single linked list:
// Java class ListNode { int val; ListNode next; ListNode(int x) { val = x; next = null; } }
// C++ class ListNode { public: int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} };
// C struct ListNode { int val; struct ListNode *next; };
Implement a function removeCycle that assigns null to the next pointer of the tail and returns pointer to the head of the list.
// Java ListNode removeCycle(ListNode head)
// C, C++ ListNode* removeCycle(ListNode *head)
Example
Function removeCycle removes the pointer from the tail (sets the tail pointer next to null) and returns head:
Submissions 1K
Acceptance rate 34%