提示: 作者被禁止或删除 内容自动屏蔽
/*****************************************************************
** HighlightCodeV3.0 software by yzfy(雨中飞燕) http:// **
*****************************************************************/
node_t * ChangeTwoNodes(node_t *list)
{
if(list==NULL) return NULL;
node_t *pret=list->next?list->next:list, *p, *t;
for (t=list; (list) && (p=list->next); list=list->next)
{
t->next = p;
list->next = p->next;
p->next = t = list;
}
return pret;
}
** HighlightCodeV3.0 software by yzfy(雨中飞燕) http:// **
*****************************************************************/
node_t * ChangeTwoNodes(node_t *list)
{
if(list==NULL) return NULL;
node_t *pret=list->next?list->next:list, *p, *t;
for (t=list; (list) && (p=list->next); list=list->next)
{
t->next = p;
list->next = p->next;
p->next = t = list;
}
return pret;
}
" border="0" />[color=white]