【剑指Offer】3.从尾到头打印链表(Python实现)

题目描述

输入一个链表,按链表从尾到头的顺序返回一个ArrayList。

解法一:栈方法

# -*- coding:utf-8 -*-
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    # 返回从尾部到头部的列表值序列,例如[1,2,3]
    def printListFromTailToHead(self, listNode):
        # write code here
        lst = []
        current = listNode
        while current:
            lst.insert(0,current.val)
            current = current.next
        return lst
发布了60 篇原创文章 · 获赞 18 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_36936730/article/details/104572413