基于顺序存储结构的图书信息表的最佳位置图书的查找

#include
#include
using namespace std;
#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef int Status;                 //声明类型int类型为Status
#define MAXSIZE 10000               //图书表可能达到的最大长度 
typedef struct tagBook              //图书信息定义
{ 
   char no[20];                     //图书ISBN
   char name[50];                   //图书名字
   float price;                     //图书价格
}Book; 
typedef struct tagSqList            //声明类型tagSqList结构为SqList
{ 
   Book *elem;                      //存储空间的基地址 
   int length;                      //图书表中当前图书个数 
}SqList;                            //图书表的顺序存储结构类型为SqList
int main()
{
    Status InitList_Sq(SqList &L);  //声明函数
    Status PrintList_Sq(SqList &L); //声明函数
    Status CreationList_Sq(SqList &L,char *no,char *name,float &price);//声明函数
    Status FindByLocation(SqList &L,int location);//声明函数
    SqList L;                       //定义L为SqList
    InitList_Sq(L);                 //初始化L
    char no[20],name[50];           //定义no,name为char数组
    float price;                    //定义price为float
    int n;
    cin>>n;
    while(n--)     //输入no、name、price
    {
        cin>>no>>name>>price;
        CreationList_Sq(L,no,name,price);//存入书信息
    }
    cin>>n;
    while(n--)
    {
        int location;
        cin>>location;
        FindByLocation(L,location);
    }
    //PrintList_Sq(L);              //输入书信息
    return 0;                       //0:表示无错误退出。1:表示异常退出。
}
Status FindByLocation(SqList &L,int location)
{
    if(location<1||location>L.length)
    {
        cout<<"Sorry,the book on the best position doesn't exist!"<L.length) return ERROR;   
   //判断i值是否合理,若不合理,返回ERROR
  e=L.elem[i-1];   //第i-1的单元存储着第i个数据
  return OK;
}
Status LocateELem(SqList L,Book e)
{
  for (int i=0;i< L.length;i++)
      if (L.elem[i].no==e.no) return i+1;                
  return 0;
}
Status ListInsert_Sq(SqList &L,int i ,Book e){
   if(i<1 || i>L.length+1) return ERROR;             //i值不合法
   if(L.length==MAXSIZE) return ERROR;    //当前存储空间已满     
   for(int j=L.length-1;j>=i-1;j--) 
   {
        L.elem[j+1]=L.elem[j];    //插入位置及之后的元素后移
        L.elem[i-1]=e;                     //将新元素e放入第i个位置
        ++L.length;             //表长增1
   }

  return OK;
}
Status ListDelete_Sq(SqList &L,int i){
   if((i<1)||(i>L.length)) return ERROR;     //i值不合法
   for (int j=i;j<=L.length-1;j++) 
   {
       L.elem[j-1]=L.elem[j];       //被删除元素之后的元素前移  
       --L.length;                        //表长减1
   }

  return OK;
}

基于顺序存储结构的图书信息表的最佳位置图书的查找
发布时间: 2017年9月18日 00:10 最后更新: 2017年11月27日 17:09 时间限制: 1000ms 内存限制: 128M

描述
定义一个包含图书信息(书号、书名、价格)的顺序表,读入相应的图书数据来完成图书信息表的创建,然后根据指定的最佳位置的序号,查找该位置上的图书,输出相应图书的信息。

输入
总计n+m+2行。首先输入n+1行,其中,第一行是图书数目n,后n行是n本图书的信息(书号、书名、价格),每本图书信息占一行,书号、书名、价格用空格分隔,价格之后没有空格。其中书号和书名为字符串类型,价格为浮点数类型。然后输入m+1行,其中,第一行是一个整数m,代表查找m次,后m行每行内容为一个整数,代表待查找的图书的位置序号。

输出
输出m行

若查找成功:

输出内容为第i次查询的指定位置上的一本图书的信息(书号、书名、价格),书号、书名、价格用空格分隔,其中价格输出保留两位小数。

若查找失败:

只输出以下提示:抱歉,最佳位置上的图书不存在!

样例输入1
8
9787302257646 Data-Structure 35.00
9787302164340 Operating-System 50.00
9787302219972 Software-Engineer 32.00
9787302203513 Database-Principles 36.00
9787810827430 Discrete-Mathematics 36.00
9787302257800 Data-Structure 62.00
9787811234923 Compiler-Principles 62.00
9787822234110 The-C-Programming-Language 38.00
2
2
0
样例输出1
9787302164340 Operating-System 50.00
Sorry,the book on the best position doesn't exist!

你可能感兴趣的:(基于顺序存储结构的图书信息表的最佳位置图书的查找)