【数据结构C语言】顺序表的查找——顺序查找

#include
#include
#define MAXSIZE 100
typedef struct
{
    char name;
    int key;
}ElemType;
typedef struct
{
    ElemType *R;
    int length;
}SSTable;


int Init(SSTable *ST)
{
    (*ST).R=(ElemType *)malloc(sizeof(ElemType)*MAXSIZE);
    (*ST).length=0;
    return 0;
}






int Creat(SSTable *ST,int n)
{
    printf("请输入%d组数据,将建立顺序表!",n);
    int x;char c;
    for(int i=1;i     {
        scanf("%c",&c);
        scanf("%d",&x);
        (*ST).R[i].name=c;
        (*ST).R[i].key=x;
        (*ST).length++;
    }
    return 0;
}
int Search_Seq(SSTable ST,int key)
{
    int i;
    ST.R[0].key=key;
    for(i=ST.length;ST.R[i].key!=key;i--);
    return i;
}
int main()
{
    int x;
    SSTable ST;
    Init(&ST);
    Creat(&ST,5);
    printf("请输入你要查找的数:");
    scanf("%d",&x);
    printf("%d在第%d组数据中\n",x,Search_Seq(ST,x));
    printf("第%d组数据是 %c%d",Search_Seq(ST,x),ST.R[Search_Seq(ST,x)].name,ST.R[Search_Seq(ST,x)].key);
    return 0;
}


 

你可能感兴趣的:(数据结构)