# 从尾到头打印链表

剑指 Offer 06. 从尾到头打印链表

来源:力扣(LeetCode) 链接 (opens new window):https://leetcode.cn/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof/

著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

github (opens new window)

# 问题

输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。

输入:head = [1,3,2]
输出:[2,3,1]

# 思路

var reversePrint = function(head) {
 if(!head) return []
    let arr = [];
    while(head){
        arr.push(head.val);
        head = head.next;
    }
    return arr.reverse()
};
陕ICP备20004732号-3