Skip to content

Instantly share code, notes, and snippets.

@bkleinen
Created October 9, 2012 06:34
Show Gist options
  • Save bkleinen/3856996 to your computer and use it in GitHub Desktop.
Save bkleinen/3856996 to your computer and use it in GitHub Desktop.
Info3Ex1aNode
package deletenode;
public class Node {
Node next;
Object data;
public Node(Object data, Node next) {
this.data = data;
this.next = next;
}
public Node(Object data) {
this.data = data;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment