码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 之Linked List Cycle(24)

时间:2016-05-21 17:16:15      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

两个思路,一是用哈希表记录每个结点是还被访问过;二是定义两个快、慢指针,如果存在环的话,两个指针必定会在某位结点相遇。

技术分享
bool linkListNode(ListNode *head)
      {
          ListNode *fast=head, *slow=head;
          while (fast && fast->next)
          {
              slow = slow->next;
              fast = fast->next->next;

              if (fast == slow)return true;

          }

          return false;
      }
View Code

 

leetcode 之Linked List Cycle(24)

标签:

原文地址:http://www.cnblogs.com/573177885qq/p/5514926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!