Ejemplo n.º 1
0
 public void PrintLinkedListInReverse_Recursion(ImmutableListNode head)
 {
     if (head == null)
     {
         return;
     }
     PrintLinkedListInReverse_Recursion(head.GetNext());
     head.PrintValue();
 }