/**
* public class ListNode {
* int val;
* ListNode next = null;
*
* ListNode(int val) {
* this.val = val;
* }
* }
*
*/
import java.util.ArrayList;
import java.util.*;
public class Solution {
public ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
ArrayList<Integer> res = new ArrayList<>();
Stack<Integer> stack = new Stack<>();
ListNode tmpNode = listNode;
while (null != tmpNode) {
stack.push(tmpNode.val);
tmpNode = tmpNode.next;
}
while (!stack.isEmpty()) {
res.add(stack.pop());
}
return res;
}
}