剑指offer从尾到头打印链表
Posted 3yleaves
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer从尾到头打印链表相关的知识,希望对你有一定的参考价值。
题目描述:
输入一个链表,按链表值从尾到头的顺序返回一个ArrayList。
解题代码:
/*function ListNode(x){
this.val = x;
this.next = null;
}*/
function printListFromTailToHead(head)
{
// write code here
var arr = [];
if(head == null){
return arr;
}
while(head != null){
arr.push(head.val);
head = head.next;
}
return arr.reverse();
}
以上是关于剑指offer从尾到头打印链表的主要内容,如果未能解决你的问题,请参考以下文章