Skip to content

Instantly share code, notes, and snippets.

@LordRahl90
Created November 1, 2018 10:50
Show Gist options
  • Save LordRahl90/8b64aa02e524df4b9f5bf021d8db5bf8 to your computer and use it in GitHub Desktop.
Save LordRahl90/8b64aa02e524df4b9f5bf021d8db5bf8 to your computer and use it in GitHub Desktop.
This is a node for a singly linked list. It only has information about the next value.
public class Node{
int data;
Node next;
Node(int d){
data=d;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment