随笔分类 -  实训

摘要://基于动态分区分配的存储器管理系统的设计与实现 #include <bits/stdc++.h> using namespace std; int N;//定义空闲分区最大值 //定义空闲分区 struct Block { //分区id、开始地址、分区大小、使用状态(free/busy)、后继指针 阅读全文
posted @ 2023-06-18 22:52 好腻友Π