首页 > 其他 > 详细

141. 环形链表

时间:2020-04-02 19:30:46      阅读:58      评论:0      收藏:0      [点我收藏+]
 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 {
11 public:
12     bool hasCycle(ListNode *head) 
13     {
14         ListNode* fast = head;
15         ListNode* slow = head;
16         while(fast && fast->next && slow)
17         {
18             fast = fast->next->next;
19             slow = slow->next;
20             if(fast == slow) return true;
21         }
22         return false;
23     }
24 };

 

141. 环形链表

原文:https://www.cnblogs.com/yuhong1103/p/12621466.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!