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

从尾到头打印链表

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

/*function ListNode(x){ this.val = x; this.next = null;

//指针如果时head,head.next指向下一个指针;head.val表示指针对应的值 }*/

 function printListFromTailToHead(head)

{

// write code here
var res = [];
while(head){

  res.unshift(head.val)
  head = head.next
  
 }

return res;

}

 module.exports = 

{

printListFromTailToHead : printListFromTailToHead

};

全部评论

相关推荐

VirtualBoo...:都去逗他了?
点赞 评论 收藏
分享
06-18 13:28
已编辑
门头沟学院 Web前端
爱睡觉的冰箱哥:《给予你300的工资》,阴的没边了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务