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

剑指offer从尾到头打印链表python

时间:2019-11-01 18:16:04      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:inter   desc   practice   node   class   http   views   solution   current   

题目描述

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

思路

遍历链表,把结构保存在list里面,然后把list逆序输出

代码

 1 # -*- coding:utf-8 -*-
 2 # class ListNode:
 3 #     def __init__(self, x):
 4 #         self.val = x
 5 #         self.next = None
 6 
 7 class Solution:
 8     # 返回从尾部到头部的列表值序列,例如[1,2,3]
 9     def printListFromTailToHead(self, listNode):
10         if not listNode:
11             return []
12         my_list = []
13         current = listNode
14         while current:
15             my_list.append(current.val)
16             current = current.next
17         my_list.reverse()
18         return my_list
19     

 

 

剑指offer从尾到头打印链表python

标签:inter   desc   practice   node   class   http   views   solution   current   

原文地址:https://www.cnblogs.com/wangzhihang/p/11778219.html

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