从尾到头打印链表-Python
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从尾到头打印链表-Python相关的知识,希望对你有一定的参考价值。
# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: # 返回从尾部到头部的列表值序列,例如[1,2,3] def printListFromTailToHead(self, listNode): newlist =[] while listNode is not None: newlist.append(listNode.val) listNode = listNode.next return newlist[::-1]
以上是关于从尾到头打印链表-Python的主要内容,如果未能解决你的问题,请参考以下文章