void insertFirst(int d){ Node* temp=new Node(); temp->data=d; temp->next=head; head=temp; }
↧
void insertFirst(int d){ Node* temp=new Node(); temp->data=d; temp->next=head; head=temp; }