Skip to content

Instantly share code, notes, and snippets.

@talllguy
Created March 23, 2014 23:15
Show Gist options
  • Save talllguy/9731315 to your computer and use it in GitHub Desktop.
Save talllguy/9731315 to your computer and use it in GitHub Desktop.
public class node {
int data;
node next;
public node()
{data = 0; next = null;}
public node(int x, node n)
{data = x; next =n;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment