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

从尾到头打印链表-Python

时间:2017-09-30 11:28:45      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:bsp   尾到头   new   val   span   init   elf   not   def   

# -*- 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

标签:bsp   尾到头   new   val   span   init   elf   not   def   

原文地址:http://www.cnblogs.com/llw1121/p/7613751.html

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