2.14-实现Length(L)返回链表L的长度

typedef struct
{
	int elem[max];
	int length;
}Seqlist;
int Length(Linklist &L)
{
	int count=0;
	Linklist*p=L.next;
	while(p){count++;p=p->next;};
	return count;
}

你可能感兴趣的:(struct)