会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
无心+之举
博客园
首页
新随笔
联系
订阅
管理
2022年12月4日
可变分区的存储管理
摘要: 一. 实验目的 可变分区分配是一种重要的存储管理思想,目前流行的操作系统采用的分段存储管理的基本思想就源自该方法。本实验的目的是通过编程来模拟一个简单的可变分区分配存储管理系统,经过实验者亲自动手编写管理程序,可以进一步加深对可变分区分配存储管理方案设计思想的理解。 二. 实验内容 (1)编程实现简
阅读全文
posted @ 2022-12-04 20:27 无心+之举
阅读(1194)
评论(0)
推荐(0)
2021年12月12日
实验五 类与多态
摘要: person.hpp #include<iostream> #include<iomanip> #include<string> #include<fstream> #include<vector> using namespace std; class Person{ public: Person(
阅读全文
posted @ 2021-12-12 11:16 无心+之举
阅读(50)
评论(3)
推荐(0)
2021年11月26日
实验四 类的继承
摘要: 一、 task2程序源码: #include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw() : just
阅读全文
posted @ 2021-11-26 21:22 无心+之举
阅读(26)
评论(2)
推荐(0)
2021年11月9日
实验三 类与对象二
摘要: 实验内容4 Vector.hpp #include<iostream> #include<cassert> using namespace std; class Vector_int{ public: // Vector_int(int n); Vector_int(int n,int m); Ve
阅读全文
posted @ 2021-11-09 21:28 无心+之举
阅读(41)
评论(1)
推荐(0)
2021年11月3日
实验二 数组、指针与c++标准库
摘要: Info.cpp文件源码 #include<iostream> #include<string> #include<vector> using namespace std; class Info { public: Info(); Info(string nickname,string contac
阅读全文
posted @ 2021-11-03 00:55 无心+之举
阅读(35)
评论(3)
推荐(0)
2021年10月25日
实验一 类与对象
摘要: Complex.hpp文件源码 #include<iostream> #include<cmath> using namespace std; class Complex { public: Complex(double a=0,double b=0):real(a),imag(b){}; Comp
阅读全文
posted @ 2021-10-25 21:41 无心+之举
阅读(34)
评论(3)
推荐(0)
公告