int Length( List L ){
int len=0;
while(L){
len++;
L=L->Next;
}
return len;
}
08-15
896
12-04
1495
02-17
136
12-28
5352
11-10
273
11-06
1210