#include <stdio.h>
//按位查找
Elemtype GetElem(sqlist &l,int i,int b){
return l.data[i-1];
}
//按值查找
Elemtype LocateElem(sqlist &l,int i,Elemtype b){
for(int i=0;i<l.length;i++){
if(l.data[]==b)
{
return i+1;
}
return 0;
}
}
//按值查找比较部分如果是结构体比较,则不能简单structa==structb,而应该详细相比较的写出每一部分