Skip to content

Instantly share code, notes, and snippets.

@nashid
Created November 1, 2016 23:59
Show Gist options
  • Save nashid/317d18f735435b2f545a4da5400c34e4 to your computer and use it in GitHub Desktop.
Save nashid/317d18f735435b2f545a4da5400c34e4 to your computer and use it in GitHub Desktop.
public class ListUtils {
class Node {
int data;
Node next;
}
public static void print(Node node) {
if(node.next ==null ) {
return;
}
print(node.next);
System.out.print(node.value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment