编程题实训-基于顺序表的图书信息管理

第1关

#include<iostream>
#include<string.h>
#include<iomanip>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define MAXSIZE 1000    //图书表可能达到的最大长度
using namespace std;
typedef struct
{//图书信息定义
    char no[20];    //图书ISBN
    char name[50];   //图书名字
    float price;   //图书价格
}Book;
typedef struct
{//图书表的顺序存储结构类型为SqList
    Book *elem;                   //存储空间的基地址
    int length;                   //图书表中当前图书个数
}SqList;
int InitList_Sq(SqList &L)
{//构造一个空的顺序表L
    L.elem=new Book[MAXSIZE];     //为顺序表分配一个大小为MAXSIZE的数组空间
    if(!L.elem)exit(OVERFLOW);    //存储分配失败退出
    L.length=0;                   //空表长度为0
    return OK;
}
int Input_Sq(SqList &L)
{//顺序表的输入
/**************begin************/
char no[20],name[50]; 
    float price;
    int i=0;
    cin>>no>>name>>price;
    while (strcmp(no,"0") && strcmp(name,"0") && price!=0.0 && i<MAXSIZE)
    {
        L.length++;
        strcpy(L.elem[i].no,no);
        strcpy(L.elem[i].name,name);
        L.elem[i].price=price;
        i++;
        cin>>no>>name>>price;
    }
    return OK;


    /**************end************/
}
int Output_Sq(SqList L)
{//顺序表的输出
/**************begin************/
  cout<<L.length<<endl;
    for (int i=0;i<L.length;i++)
    {
        cout<<L.elem[i].no<<" "<<L.elem[i].name<<" "<<fixed<<setprecision(2)<<L.elem[i].price<<endl;
    }
    return OK;

    /**************end************/
}
int main()
{
    SqList L;                   //定义一个SqList类型的变量L
    InitList_Sq(L);             //初始化一个空的顺序表L
    Input_Sq(L);                //输入数据
    Output_Sq(L);               //输出数据
    return 0;
}

 第3关

#include<iostream>
#include<string.h>
#include<iomanip>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define MAXSIZE 1000    //图书表可能达到的最大长度
using namespace std;
typedef struct
{//图书信息定义
    char no[20];    //图书ISBN
    char name[50];   //图书名字
    float price;   //图书价格
}Book;
typedef struct
{//图书表的顺序存储结构类型为SqList
    Book *elem;                   //存储空间的基地址
    int length;                   //图书表中当前图书个数
    float avgPrice=0.00;
}SqList;
int InitList_Sq(SqList &L)
{//构造一个空的顺序表L
    L.elem=new Book[MAXSIZE];     //为顺序表分配一个大小为MAXSIZE的数组空间
    if(!L.elem)exit(OVERFLOW);    //存储分配失败退出
    L.length=0;                   //空表长度为0
    return OK;
}
int Input_Sq(SqList &L)
{//顺序表的输入
    
    float sum = 0.0;
    for (int i=0;i<MAXSIZE;i++)
    {
        cin>>L.elem[i].no>>L.elem[i].name>>L.elem[i].price;
        if(L.elem[i].no[0]=='0'&&L.elem[i].name[0]=='0'&&L.elem[i].price==0)
            break;            //输入结束,退出循环
        else
            L.length++;           //合法输入时,图书个数+1
        sum += L.elem[i].price;
    }
    L.avgPrice = sum / L.length;
    return OK;
}
int RevisePrice_Sq(SqList &L)
{//修改价格
    /**************begin************/
    
    int sum=0;
    for(int i=0;i<L.length;i++)
    {
        sum=sum+L.elem[i].price;
    }
    float avgPrice=sum/L.length;
    
    for(int i=0;i<L.length;i++)
    {
        if(L.elem[i].price<avgPrice)
        {
            L.elem[i].price=L.elem[i].price*1.2;
        }
        else if(L.elem[i].price>avgPrice)
        {
            L.elem[i].price=L.elem[i].price*1.1;
        }
    }
    return OK;
    
    /**************end************/
}
int Output_Sq(SqList L)
{//顺序表的输出

    cout<<fixed<<setprecision(2)<<L.avgPrice<<endl;
    for(int i=0;i<L.length;i++)  //图书的信息(书号、书名、价格)
        cout<<L.elem[i].no<<" "<< L.elem[i].name<<" "<<fixed<<setprecision(2)<<L.elem[i].price<<endl;
    return OK;
}
int main()
{
    SqList L;           //定义一个SqList类型的变量L
    InitList_Sq(L);     //初始化一个空的顺序表L
    Input_Sq(L);        //输入数据
    RevisePrice_Sq(L);    //修改价格
    Output_Sq(L);       //输出数据
    return 0;
}

第5关

#include<iostream>
#include<iomanip>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define MAXSIZE 1000    //图书表可能达到的最大长度
using namespace std;
typedef struct
{//图书信息定义
    char no[20];    //图书ISBN
    char name[50];   //图书名字
    float price;   //图书价格
}Book;
typedef struct
{//图书表的顺序存储结构类型为SqList
    Book *elem;                   //存储空间的基地址
    int length;                   //图书表中当前图书个数
}SqList;
int InitList_Sq(SqList &L)
{//构造一个空的顺序表L
    L.elem=new Book[MAXSIZE];     //为顺序表分配一个大小为MAXSIZE的数组空间
    if(!L.elem)exit(OVERFLOW);    //存储分配失败退出
    L.length=0;                   //空表长度为0
    return OK;
}
int Input_Sq(SqList &L)
{//顺序表的输入
    int n;
    cin>>n;    //图书数目n
    for(int i=0;i<n;i++)
    {
        cin>>L.elem[i].no>>L.elem[i].name>>L.elem[i].price;
        L.length++;
    }
    return OK;
}
int HighestPrice_Sq(SqList L)
{//查找价格最高的图书并输出相应图书的信息
/**************begin************/
 float maxPrice = 0.00;
    int maxCount = 0;
    for (int i = 0; i < L.length; i++)
    {
        if (L.elem[i].price > maxPrice)
        {
            maxPrice = L.elem[i].price;
            maxCount = 1;
        }
        else if (L.elem[i].price == maxPrice)
        {
            maxCount++;
        }
    }

    cout << maxCount << endl;
    for (int i = 0; i < L.length; i++)
    {
        if (L.elem[i].price == maxPrice)
        {
            cout << L.elem[i].no << " " << L.elem[i].name << " " 
                 << fixed << setprecision(2) << L.elem[i].price << endl;
        }
    }

    return OK;
    /**************end************/
}
int main()
{
    SqList L;               //定义一个SqList类型的变量L
    InitList_Sq(L);         //初始化一个空的顺序表L
    Input_Sq(L);            //输入数据
    HighestPrice_Sq(L);     //查找价格最高的图书并输出相应图书的信息
    return 0;
}

第7关

#include<iostream>
#include<iomanip>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define MAXSIZE 1000    //图书表可能达到的最大长度
using namespace std;
typedef struct
{//图书信息定义
    char no[20];    //图书ISBN
    char name[50];   //图书名字
    float price;   //图书价格
}Book;
typedef struct
{//图书表的顺序存储结构类型为SqList
    Book *elem;                   //存储空间的基地址
    int length;                   //图书表中当前图书个数
}SqList;
int InitList_Sq(SqList &L)
{//构造一个空的顺序表L
    L.elem=new Book[MAXSIZE];     //为顺序表分配一个大小为MAXSIZE的数组空间
    if(!L.elem)exit(OVERFLOW);    //存储分配失败退出
    L.length=0;                   //空表长度为0
    return OK;
}
int Input_Sq(SqList &L)
{//顺序表的输入
    int n;
    cin>>n;    //图书数目n
    for(int i=0;i<n;i++)
    {
        cin>>L.elem[i].no>>L.elem[i].name>>L.elem[i].price;
        L.length++;
    }
    return OK;
}
int FindLocate_Sq(SqList L)
{//查找最佳位置图书并输出数据
/**************begin************/
int m;
cin>>m;
for(int i=0;i<m;i++)
{
    int p;
    cin>>p;
    if(p<1||p>L.length)
    {
        cout<<"Sorry,the book on the best position doesn't exist!"<<endl; 
    }
    else 
    {
        cout<<L.elem[p-1].no<<" "<<L.elem[p-1].name<<" "<<fixed<<setprecision(2)<<L.elem[p-1].price<<endl;
    }
}
return OK;

    /**************end************/
}
int main()
{
    SqList L;            //定义一个SqList类型的变量L
    InitList_Sq(L);      //初始化一个空的顺序表L
    Input_Sq(L);         //输入数据
    FindLocate_Sq(L);    //查找最佳位置图书并输出数据
    return 0;
}

第8关

#include<iostream>
#include <string.h>
#include<iomanip>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define MAXSIZE 1000    //图书表可能达到的最大长度
using namespace std;
typedef struct
{//图书信息定义
    char no[20];    //图书ISBN
    char name[50];   //图书名字
    float price;   //图书价格
}Book;
typedef struct
{//图书表的顺序存储结构类型为SqList
    Book *elem;                   //存储空间的基地址
    int length;                   //图书表中当前图书个数
}SqList;
int InitList_Sq(SqList &L)
{//构造一个空的顺序表L
    L.elem=new Book[MAXSIZE];     //为顺序表分配一个大小为MAXSIZE的数组空间
    if(!L.elem)exit(OVERFLOW);    //存储分配失败退出
    L.length=0;                   //空表长度为0
    return OK;
}
int Input_Sq(SqList &L)
{//顺序表的输入
    int n;
    cin>>n;    //图书数目n
    for(int i=0;i<n;i++)
    {
        cin>>L.elem[i].no>>L.elem[i].name>>L.elem[i].price;
        L.length++;
    }
    return OK;
}
int Insert_Sq(SqList &L)
{//新图书的入库和输出.
/**************begin************/
int n1;
cin>>n1;

if(n1<1||n1>L.length)
{
    cout<<"Sorry,the position to be inserted is invalid!"<<endl;
}
else 
{
    Book temp;
    for(int i=L.length;i>n1-1;i--)
    {
        temp=L.elem[i];
        L.elem[i]=L.elem[i-1];
        L.elem[i-1]=temp;
    }
cin>>L.elem[n1-1].no>>L.elem[n1-1].name>>L.elem[n1-1].price;
for(int i=0;i<L.length+1;i++)
{
    cout<<L.elem[i].no<<" "<<L.elem[i].name<<" "<<fixed<<setprecision(2)<<L.elem[i].price<<endl;
}


}

return OK;


    /**************end************/
}
int main()
{
    SqList L;           //定义一个SqList类型的变量L
    InitList_Sq(L);     //初始化一个空的顺序表L
    Input_Sq(L);        //输入数据
    Insert_Sq(L);	//新图书的入库和输出
    return 0;
}

第9关

#include<iostream>
#include<iomanip>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define MAXSIZE 1000    //图书表可能达到的最大长度
using namespace std;
typedef struct
{//图书信息定义
    char no[20];    //图书ISBN
    char name[50];   //图书名字
    float price;   //图书价格
}Book;
typedef struct
{//图书表的顺序存储结构类型为SqList
    Book *elem;                   //存储空间的基地址
    int length;                   //图书表中当前图书个数
}SqList;
int InitList_Sq(SqList &L)
{//构造一个空的顺序表L
    L.elem=new Book[MAXSIZE];     //为顺序表分配一个大小为MAXSIZE的数组空间
    if(!L.elem)exit(OVERFLOW);    //存储分配失败退出
    L.length=0;                   //空表长度为0
    return OK;
}
int Input_Sq(SqList &L)
{//顺序表的输入
    int n;
    cin>>n;    //图书数目n
    for(int i=0;i<n;i++)
    {
        cin>>L.elem[i].no>>L.elem[i].name>>L.elem[i].price;
        L.length++;//图书个数+1
    }
    return OK;
}
int Delete_Sq(SqList &L)
{//旧图书的出库和输出
/**************begin************/
int n1;
cin>>n1;
Book temp,temp1;
if(n1<1||n1>L.length)
{
    cout<<"Sorry,the position to be deleted is invalid!"<<endl;
}
else
{
    L.elem[n1-1]=temp;
    for(int i=n1;i<L.length;i++)
    {
        temp1=L.elem[i];
        L.elem[i]=L.elem[i-1];
        L.elem[i-1]=temp1;
    }
    for(int i=0;i<L.length-1;i++)
    {
        cout<<L.elem[i].no<<" "<<L.elem[i].name<<" "<<fixed<<setprecision(2)<<L.elem[i].price<<endl;
    }

}
return OK;
    /**************end************/
}
int main()
{
    SqList L;            //定义一个SqList类型的变量L
    InitList_Sq(L);      //初始化一个空的顺序表L
    Input_Sq(L);         //输入数据
    Delete_Sq(L);        //旧图书的出库和输出
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值