LinkList Change(LinkList& L){
if(L && L->next) //确保链表不为空
head = L;
tail = L;
L = L->next; //L移动到下一个节点
while(tail - >next ! =null)
tail = tail ->next; //找到链表的尾节点
tail->next = head; //尾节点变头节点
head->next = null; //头节点后面置为空
return L;
}
LinkList Change(LinkList& L){
if(L && L->next) //确保链表不为空
head = L;
tail = L;
L = L->next; //L移动到下一个节点
while(tail - >next ! =null)
tail = tail ->next; //找到链表的尾节点
tail->next = head; //尾节点变头节点
head->next = null; //头节点后面置为空
return L;
}