leetcode 之Linked List Cycle(24)

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

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

 

posted @ 2016-05-21 16:02  牧马人夏峥  阅读(97)  评论(0编辑  收藏  举报