题解 | #反转链表#
反转链表
https://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca?tpId=308&tqId=23286&ru=%2Fpractice%2F97dc1ac2311046618fd19960041e3c6f&qru=%2Fta%2Falgorithm-start%2Fquestion-ranking&sourceUrl=%2Fexam%2Foj%3Fpage%3D1%26tab%3D%25E7%25AE%2597%25E6%25B3%2595%25E7%25AF%2587%26topicId%3D295
/*
* function ListNode(x){
* this.val = x;
* this.next = null;
* }
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param head ListNode类
* @return ListNode类
*/
function ReverseList( head ) {
// write code here
let arr = []
if(!head){return head}
let bianli = function bianli(root){
root.val && arr.push(root.val);
root.next && bianli(root.next);
}
let reverse = function reverse(root,index){
root.val && (root.val = arr[index]);
root.next && reverse(root.next,index+1);
}
bianli(head);
arr.reverse();
reverse(head,0);
return head
}
module.exports = {
ReverseList : ReverseList
};
查看3道真题和解析