• + 0 comments

    C#

    public static void ReversePrint(Node head)
        {
            if (head != null){
                ReversePrint(head.Next);
               Console.WriteLine(head.Data);
            }
        }