Skip to content

Instantly share code, notes, and snippets.

@tanvir002700
Created September 21, 2015 14:49
Show Gist options
  • Save tanvir002700/deb79f82a6de1e1b4b1a to your computer and use it in GitHub Desktop.
Save tanvir002700/deb79f82a6de1e1b4b1a to your computer and use it in GitHub Desktop.
Linked List
void show()
{
node *temp=Head;
while(temp!=NULL)
{
cout<<temp->data<<" ";
temp=temp->next;
}
cout<<endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment