题解 | #从尾到头打印链表#
从尾到头打印链表
https://www.nowcoder.com/practice/d0267f7f55b3412ba93bd35cfa8e8035
/*function ListNode(x){
this.val = x;
this.next = null;
}*/
function printListFromTailToHead(head) {
res = new Array();
while (head != null) {
node = head.val;
res.push(node);
head = head.next;
};
return res.reverse();
}
module.exports = {
printListFromTailToHead: printListFromTailToHead,
};
