下面算法的功能为 。void ABBA(Link L){ p=L->next;L->next=null; while p { q=p;p=p->next;q->next=L->next;L->next=q; }}
下面算法的功能为 。void ABBA(Link L){ p=L->next;L->next=null; while p { q=p;p=p->next;q->next=L->next;L->next=q; }}
发布时间:2025-07-15 09:02:53