int
Length_LinkList1 ( LinkList L )
{
Lnode * p=L;
/* p指向头结点*/
j=0;
while
( p->next )
{ p=p->next; j++ }
/* p所指的是第j 个结点*/
return
j;
}