Skip to content

Instantly share code, notes, and snippets.

@EvanDarwin
Created June 14, 2015 21:38
Show Gist options
  • Save EvanDarwin/32803937cb710d2af034 to your computer and use it in GitHub Desktop.
Save EvanDarwin/32803937cb710d2af034 to your computer and use it in GitHub Desktop.
void Print(Node head) {
if(head.next != null) {
System.out.println(head.next.data.toString());
Print(head.next);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment