template next;
{
int k=1;
listnode
ptr=first;
while(ptr->next!=NULL&&k!=p)
{
ptr=ptr->next;
k++;
}
t=ptr->next;
cout<<"你已经将数据项 "<
length–;
delete t;
}
在节点P后插入一个节点:
template
{
listnode
ptr=first;
int k=1;
while(ptr!=NULL&&k
k++;
}
if(ptr==NULL&&k!=p)
return false;
else
{
listnode
tp=new listnode
tp->data=t;
tp->next=ptr->next;
ptr->next=tp;
length++;
return true;
}
}
评论列表
文章目录