• + 1 comment

    Even denser in Python:

    def ReversePrint(head):
        if head:
            ReversePrint(head.next)
            print(head.data)