赞
踩
int LinkList(Sqlist L,int e){ for(int k=0;k<L.length;k++){ if(L.data[k]==e){ return k; }else return -1; }}