C++图书管理系统! #include #include #include #include const int Maxr=200; const int Maxb=200; const int Maxbor=2; //每个读者最多借借2本 class Reader //读者类 { int tag; //删除标记 1:已删,0:未删 int no; //读者编号 char name[10]; //读者姓名 int borbook[Maxbor]; //所借图书 public: Reade
非常好啊 图书信息管理系统设计.doc #include #include #include //输入/输出文件流类 #include using namespace std; //最多的读者 const int Maxr=100; //最多的图书 const int Maxb=100; //每位读者最多借五本书 const int Maxbor=5 ; //读者类,实现对读者的信息的描述 class Reader { private: //删除标记 1:已删 0:未删 int tag
c++图书管理系统的完整代码 #include #include #include #include //输入/输出文件流类 using namespace std; const int Maxr=100;//最多的读者 const int Maxb=100;//最多的图书 const int Maxbor=5;//每位读者最多借五本书 //读者类,实现对读者的信息的描述
银行家算法的C语言实现 //head.h #include #include using namespace std; #define Max 20 int res_num; //资源类:代表资源数目之用 class R { public: R(); int a; int b; int c; }; R::R() { a=0; b=0; c=0; } //数组类,存储安全序列之用 class Array { public: Array(); int array[Max]; int deep;
页式地址变换机构模拟:1.根据给出的页表情况模拟页式的地址变换机构 2.用程序模拟地址变换机构,输出指令逻辑地址到物理地址的变换 #include #include #include #include const int MAXSIZE=100; //定义访问串最大长度 const int MAX_PAGE=100; //定义最大的分页数 int Queue[MAXSIZE]; //保存访问串 int QueueNum=0; //保存访问串长度 int PageNum=0;