nhead 与 a的前后前后
不是很搞明白 先藏着
plist Reverse(plist head) ///实现链表倒序的函数
{
plist nhead = NULL, a = NULL, b = NULL;
a = head; ///给一个头指针给a a 是在前头的
while(a)
{
b = a->next;
a->next = nhead;
nhead = a; ///nhead 在后头
a = b; ///a 在前头
}
return nhead;
}