循环的方法从头到尾遍历链表,值依次存入List中,最后翻转List即可。 class Solution { // 返回从尾到头的列表值序列 public List<int> printListFromTailToHead(ListNode listNode) &...