int
Location_SeqList ( SeqList *L, datatype x )
{
i=0;
while
( i<=L.last && L->data[i]!= x )
i++;
if
( i>L->last )
return
-1;
else
i;
/*返回的是存储位置*/
}