Created
November 1, 2018 10:50
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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