Skip to content

Instantly share code, notes, and snippets.

@tanvir002700
Created September 21, 2015 14:45
Show Gist options
  • Save tanvir002700/87a9c74e537be2448dce to your computer and use it in GitHub Desktop.
Save tanvir002700/87a9c74e537be2448dce to your computer and use it in GitHub Desktop.
Linked list
class node
{
public:
int data;
node *next;
node()
{
next=NULL;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment