Skip to content

Instantly share code, notes, and snippets.

@Mahdhir
Created May 2, 2020 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mahdhir/f62e08dd9390b8fe743c18b4bb0cd299 to your computer and use it in GitHub Desktop.
Save Mahdhir/f62e08dd9390b8fe743c18b4bb0cd299 to your computer and use it in GitHub Desktop.
A Node class
class Node{
int key;
Node next;
public Node(int data){
key = data;
next = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment