美文网首页
Swift.从尾到头打印链表

Swift.从尾到头打印链表

作者: cubegao | 来源:发表于2019-02-03 15:02 被阅读0次

    题目:输入一个链表的头结点,从尾到头反过来打印每个节点的值

    //利用调用栈,直接打印
    class Solution {
        func printListNode(_ head: ListNode?) {
            if head?.next != nil {
                printListNode(head?.next)
            }
            print(head!.val)
        }
    }
    

    相关文章

      网友评论

          本文标题:Swift.从尾到头打印链表

          本文链接:https://www.haomeiwen.com/subject/kciysqtx.html