Удалить узел головного узла в списке ссылок
void deleteNode(Node *head)
{
Node* temp=head;
if(head!=NULL)
{
head=head->next;
delete temp;
}
}
Tarique