void printListInRecursion(Node head){ Node curr = head; if(curr == null) return; System.out.print(curr.data+" "); printListInRecursion(curr.next); }
void printListInRecursion(Node head){ Node curr = head; if(curr == null) return; System.out.print(curr.data+" "); printListInRecursion(curr.next); }