2020 - 08 - 13 면접 문제 02.08. 순환 검사

1377 단어 leetcode&&JS
면접 문제 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;
};

좋은 웹페이지 즐겨찾기