题解 | #从尾到头打印链表#

从尾到头打印链表

http://www.nowcoder.com/practice/d0267f7f55b3412ba93bd35cfa8e8035

1.javascript node

node环境下也存在指针,指针如果时head,head.next指向下一个指针;head.val表示指针对应的值

2.数组的方法

插入:
array.unshift(1) 倒序插入
array.shift(2) 正序插入
array.reverse() 倒序

/*function ListNode(x){
    this.val = x;
    this.next = null;
}*/
function printListFromTailToHead(head)
{
    let returnList = [];
    while(head){
        returnList.unshift(head.val);
        head = head.next;
    }
    return returnList;
    // write code here
}
module.exports = {
    printListFromTailToHead : printListFromTailToHead
};
全部评论

相关推荐

喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
伟大的烤冷面被普调:暨大✌🏻就是强
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务