홀수 짝수 목록 - 순진한 접근 방식
5057 단어 leetcodejavascript
/**
* 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 oddEvenList = function(head) {
let odd = [];
let even = [];
let current = head;
let count = 0;
while (current !== null) {
if (count % 2 === 0) {
even.push(current.val);
} else {
odd.push(current.val);
}
count++;
current = current.next;
}
const newArray = even.concat(odd);
head = null;
const insertAtLast = (data) => {
if (head === null) {
head = new ListNode(data);
} else {
let current = head;
while (current.next) {
current = current.next;
}
current.next = new ListNode(data);
}
};
for (let i = 0; i < newArray.length; i++) {
insertAtLast(newArray[i]);
}
return head;
};
Reference
이 문제에 관하여(홀수 짝수 목록 - 순진한 접근 방식), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanali0704/odd-even-list-naive-approach-2mlp텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)