1.题目地址
2.题目描述
输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。
示例 1:
输入:head = [1,3,2]
输出:[2,3,1]限制:
0 <= 链表长度 <= 10000
3.思路
使用辅助栈,因为栈是后进先出,因此将原先链表依次压入栈中,然后在通过pop()将栈中元素弹出至数组中输出,便可实现从尾到头打印。
4.代码
public int[] reversePrint(ListNode head) {
LinkedList<Integer> stack = new LinkedList<>();
ListNode temp = head;
while (temp != null) {
stack.push(temp.val);
temp = temp.next;
}
int size = stack.size();
int[] print = new int[size];
for (int i = 0; i < size; i++) {
print[i] = stack.pop();
}
return print;
}