876. 연결 목록의 중간
두 개의 중간 노드가 있는 경우 두 번째 중간 노드를 반환합니다.
예 1:
입력: 헤드 = [1,2,3,4,5]
출력: [3,4,5]
설명: 목록의 중간 노드는 노드 3입니다.
예 2:
입력: 헤드 = [1,2,3,4,5,6]
출력: [4,5,6]
설명: 목록에는 값이 3과 4인 두 개의 중간 노드가 있으므로 두 번째 노드를 반환합니다.
제약:
목록의 노드 수는 [1, 100] 범위입니다.
1 <= Node.val <= 100
해결책 :
var middleNode = function(head) {
// create array A to push elements in
let A = [head];
// Remember that Linked List is Like SANDWISH the head contain the next node and the next node contain the next node till the end
// The end is where no next | node.next = null
// loop though the list till the end
while (A[A.length - 1].next != null)
// push every element
A.push(A[A.length - 1].next);
// Return the middle one
return A[Math.trunc(A.length / 2)];
};
Reference
이 문제에 관하여(876. 연결 목록의 중간), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/miramgh/876-middle-of-the-linked-list-1jkm텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)