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

从尾到头打印链表

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
};
全部评论

相关推荐

10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
有工作后先养猫:太好了,是超时空战警,我们有救了😋
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务