函数题:3 int Length( List L ) { int count = 0; List p = L; while (p != NULL) { count++; p = p->Next; } return count; }