链表Linked List Cycle

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了链表Linked List Cycle相关的知识,希望对你有一定的参考价值。

题目:

Given a linked list, determine if it has a cycle in it.

思路:

对于判断链表是否有环,方法很简单,用两个指针,一开始都指向头结点,一个是快指针,一次走两步,一个是慢指针,一次只走一步,当两个指针重合时表示存在环了。

fast先进入环,在slow进入之后,如果把slow看作在前面,fast在后面每次循环都向slow靠近1,所以一定会相遇,而不会出现fast直接跳过slow的情况。

/**
 * Definition for singly-linked list.
 * function ListNode(val) {
 *     this.val = val;
 *     this.next = null;
 * }
 */

/**
 * @param {ListNode} head
 * @return {boolean}
 */
var hasCycle = function(head) {
    if(head==null||head.next==null){
        return false;
    }
    
    var s=head,f=head.next.next;
    while(s!=f){
        if(f==null||f.next==null){
            return false;
        }else{
            s=s.next;
            f=f.next.next;
        }
    }
    
    return true;
};

 

以上是关于链表Linked List Cycle的主要内容,如果未能解决你的问题,请参考以下文章

141. 环形链表(Linked List Cycle)

链表Linked List Cycle

[LC]141题 Linked List Cycle (环形链表)(链表)

141. Linked List Cycle

Linked List Cycle

25.leetcode142_linked_list_cycle_II