题目:输入一个链表的头结点,从尾到头反过来打印每个节点的值
//利用调用栈,直接打印
class Solution {
func printListNode(_ head: ListNode?) {
if head?.next != nil {
printListNode(head?.next)
}
print(head!.val)
}
}
题目:输入一个链表的头结点,从尾到头反过来打印每个节点的值
//利用调用栈,直接打印
class Solution {
func printListNode(_ head: ListNode?) {
if head?.next != nil {
printListNode(head?.next)
}
print(head!.val)
}
}
本文标题:Swift.从尾到头打印链表
本文链接:https://www.haomeiwen.com/subject/kciysqtx.html
网友评论