#include#include #include using namespace std;#define MAXSIZE 100struct..._数据结构图书管理系统代码">
当前位置:   article > 正文

数据结构项目—— 用顺序表制作图书管理系统_数据结构图书管理系统代码

数据结构图书管理系统代码

《图书信息管理系统》的制作:

在这里插入图片描述
全部代码如下(各部分已注释):

#include "pch.h"
#include<string>
#include<fstream>
#include <iomanip>
#include <iostream>

using namespace std;
#define MAXSIZE  100

struct Book
{
   
	string id;
	string name;
	double price;
};

//顺序表结构体
struct SqList
{
   
	Book *elem;		//线性表初始位置
	int length;		//线性表长度

};

//初始化线性表
void initSqList(SqList &L)
{
   
	L.elem = new Book[MAXSIZE];
	if (!L.elem)
	{
   
		exit(0);
	}
	L.length = 0;
}

//线性表的取值
int GetElem(SqList &L, int i, Book &e)
{
   
	if (i<1||i>L.length)
	{
   
		return -1;
	}

	e=L.elem[i - 1];
	return 0;
} 

//线性表的查找
int LocateElem(SqList &L,string e)
{
   
	for (int i = 0; i < L.length; i++)
	{
   
		if (L.elem[i].id==e)
		{
   
			cout << "所查找书籍信息为:";
			cout << L.elem[i].id << "          ";
			cout << L.elem[i].name << "          ";
			cout << L.elem[i].price << endl;
			cout << "书籍查找成功!!" << endl;
			return i + 1;
		}
	}
	cout << "查无此书!!" << endl;
	return 0;
}

//线性表的插入
int InsertSqLis
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/807634
推荐阅读
相关标签