[리트코드] 876. Middle of the Linked List
876. Middle of the Linked List
나의 풀이
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
var middleNode = function (head) {
let cur = head;
let cnt = 1;
while (cur.next) {
cur = cur.next;
cnt++;
}
cnt = parseInt(cnt / 2);
while (cnt) {
head = head.next;
cnt--;
}
return head;
};
console.log(middleNode([1, 2, 3, 4, 5]));
나의 풀이
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
var middleNode = function(head) {
let fast = head;
let slow = head;
// during each traversal, we'll move
// fast at 2 increments, and slow at 1 increment
while (fast && fast.next) {
fast = fast.next.next;
slow = slow.next;
}
// by the time we finish the while loop, slow pointer
// should point to the middle node;
return slow;
};
접근법이 새로웠는데 대부분의 효율성 좋은 코드가 위와 같은 방법으로 되어 있었다.
fast가 2번씩 갈때 slow가 1번갔으니 fast가 끝났을 때는 slow는 중간이다.