{
Node *p;
int i=0,j=0;
while(i<=L->last)//last为数组长度;
{
if(p->data[i]!=p->data[i+1])
{
p->data[j]=p->data[i];
i++;
j++;
}
else
{
while(p->data[i]!=p->data[i+1])
{
i++;
}
p->data[j]=p->data[i+1];
i=i+2;
}
}
return 0;
}
08-04
4907

11-03
1万+
