2020-08-13 面试题 02.08. 环路检测

面试题 02.08. 环路检测

https://leetcode-cn.com/problems/linked-list-cycle-lcci/

难度中等26收藏分享切换为英文关注反馈

给定一个链表,如果它是有环链表,实现一个算法返回环路的开头节点。
有环链表的定义:在链表中某个节点的next元素指向在它前面出现过的节点,则表明该链表存在环路。

示例 1:

输入:head = [3,2,0,-4], pos = 1
输出:tail connects to node index 1
解释:链表中有一个环,其尾部连接到第二个节点。

示例 2:

输入:head = [1,2], pos = 0
输出:tail connects to node index 0
解释:链表中有一个环,其尾部连接到第一个节点。

示例 3:

输入:head = [1], pos = -1
输出:no cycle
解释:链表中没有环。

执行用时:84 ms, 在所有 JavaScript 提交中击败了69.00%的用户

内存消耗:40.3 MB, 在所有 JavaScript 提交中击败了96.43%的用户

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

/**
 * @param {ListNode} head
 * @return {ListNode}
 */
var detectCycle = function (head) {
    var temp = head;
    while (temp) {
        temp.val = "vis";
        temp = temp.next;
        if (temp == null) return temp;
        if (temp.val === "vis") return temp;
    }
    return temp;
};

 

你可能感兴趣的:(leetcode,&&,JS)