采用可变式分区管理,使用空闲链表实现主存的分配与回收

采用可变式分区管理,使用空闲链表实现主存的分配与回收 #include<stdio.h> #include<string.h> #include<malloc.h> #define NULL 0 #define LEN sizeof(struct PCB) struct PCB{ int InitAdd; int EndAdd; int Length; int Release; cha
相关文章
相关标签/搜索