题解 | #从尾到头打印链表#
从尾到头打印链表
https://www.nowcoder.com/practice/d0267f7f55b3412ba93bd35cfa8e8035
# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # self.val = x # self.next = None # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param listNode ListNode类 # @return int整型一维数组 # class Solution: def printListFromTailToHead(self , listNode: ListNode) -> List[int]: res = [] while listNode: res.append(listNode.val) listNode = listNode.next return res[::-1] # write code here
新了解到的知识:
1.python的链表
while listNode:
listNode = listNode.next 通过这两句话让链表向前走
2.python数组倒序
# 方法一 利用list的分片操作,不改变原list
x = [1, 2, 3, 4, 5]
print(x[::-1])
方法二:改变原list
x.reverse()