码迷,mamicode.com
首页 > 编程语言 > 详细

剑指offer——03从尾至头打印列表(Python3)

时间:2019-05-25 15:47:59      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:insert   next   代码   src   space   image   col   打印   nts   

技术图片

思路:相当于数据结构中的链表就地逆置,可以使用头插法来实现。

代码:

class Solution:
    # 返回从尾部到头部的列表值序列,例如[1,2,3]
    def printListFromTailToHead(self, listNode):
        # write code here
        = []
        head = listNode
        while head:
            l.insert(0, head.val)
            head = head.next
        return l

 

剑指offer——03从尾至头打印列表(Python3)

标签:insert   next   代码   src   space   image   col   打印   nts   

原文地址:https://www.cnblogs.com/wobushangwangl/p/10922545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!