Skip to content

Instantly share code, notes, and snippets.

@irrationnelle
Created November 8, 2015 10:57
Show Gist options
  • Save irrationnelle/30134385f17a02f21df1 to your computer and use it in GitHub Desktop.
Save irrationnelle/30134385f17a02f21df1 to your computer and use it in GitHub Desktop.
I had another error for SLL_InsertHead
void SLL_InsertHead(Node** Head, Node* NewHead)
{
if((*Head) == NULL)
*Head = NewHead;
else
{
//NewHead->NextNode = (*Head)->NextNode;
NewHead->NextNode = *Head;
*Head = NewHead;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment