首页 > 代码库 > LeetCode - Linked List Cycle
LeetCode - Linked List Cycle
判断一个链表是否为循环链表。
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), next(NULL) {} 7 * }; 8 */ 9 class Solution {10 public:11 bool hasCycle(ListNode *head) {12 ListNode *fast = head;13 ListNode *slow = head;14 while (fast != NULL && fast->next != NULL)15 {16 slow = slow->next;17 //每次fast比slow快一步18 //直到fast == slow19 fast = fast->next->next;20 if (slow == fast)21 return true;22 }23 return false;24 }25 };
LeetCode - Linked List Cycle
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。