赞
踩
node *insertTail(node *h, node *t)
{
if(h == NULL) return t;
for(node * i = h;i;i=i->next)
{
if(i->next == NULL)
{
i->next = t;
break;
}
}
return h;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。