Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 859 Bytes

2022-12-06.md

File metadata and controls

38 lines (32 loc) · 859 Bytes

题目

  1. Odd Even Linked List

Given the head of a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and return the reordered list.

The first node is considered odd, and the second node is even, and so on.

Note that the relative order inside both the even and odd groups should remain as it was in the input.

You must solve the problem in O(1) extra space complexity and O(n) time complexity.

思路

代码

var oddEvenList = function(head) {
  if (!head) {
      return null
  }
  const evenHead = head.next
  let p0 = null
  let p = head
  let count = 1
  while (p.next) {
    const next = p.next
    p.next = p.next.next
    p0 = p
    p = next
    count++
  }
  if (count % 2 == 0) {
    p0.next = evenHead
  } else {
    p.next = evenHead
  }
  return head
};