Skip to content

Instantly share code, notes, and snippets.

@tanvir002700
Created September 21, 2015 14:46
Show Gist options
  • Save tanvir002700/ab766a1523b22935a731 to your computer and use it in GitHub Desktop.
Save tanvir002700/ab766a1523b22935a731 to your computer and use it in GitHub Desktop.
Linked List
void append(int val)
{
Size++;
node *temp=new node();
temp->data=val;
if(Head==NULL)
{
Head=tail=temp;
return;
}
tail->next=temp;
tail=temp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment