Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
bool hasCycle(struct ListNode *head) {
struct ListNode* fast = head;
struct ListNode* slow = head;
while(true)
{
if (fast == NULL || slow == NULL) return false;
else slow = slow->next;
if (fast->next == NULL) return false;
else fast = fast->next->next;
if (fast == slow) return true;
}
}