Linked List Cycle

来源:互联网 发布:淘宝店主图图片尺寸 编辑:程序博客网 时间:2024/06/06 21:02

Given a linked list, determine if it has a cycle in it.
LintCode上原题

 * Definition for singly-linked list. * struct ListNode { *     int val; *     ListNode *next; *     ListNode(int x) : val(x), next(NULL) {} * }; */class Solution {public:    bool hasCycle(ListNode *head) {       if(!head) return false;       ListNode *fast=head,*slow=head;       while(fast&&fast->next){           slow=slow->next;           fast=fast->next->next;           if(slow==fast) return true;       }       return false;    }};
0 0
原创粉丝点击