class ListNode: def __init__(self, x): self.val = x self.next = None class Solution: # 返回从尾部到头部的列表值序列,例如[1,2,3] def printListFromTailToHead(self, listNode): # write code here node=listNode res=[] while node: res.append(node.val) node=node.next return res[::-1]
思路:将链表的节点添加进列表,再对列表进行反转输出
原文:https://www.cnblogs.com/zxixiu/p/12906044.html